renstar 0.4.1 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/bin/renstar.rb +15 -15
- data/lib/renstar/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3e5616f678e47e9b94cf668ce0cab8113c189ed175ab6fd63861e9a9462f2c0f
|
|
4
|
+
data.tar.gz: 3c230f555fe5d49e65c62c0f5db24f3ac1c3dd5e5a9e7cb277c063eaa1789ee3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c5935c4649ea5130d532b795b56bafb9b70e76c492bf41418672c84bbeea4252e2e13c5af377a564e3e7662852fc4a74617708e3375f993165df712a9f5a9c40
|
|
7
|
+
data.tar.gz: ea4900440f14c200f5dd941b2e9a46286e0573b86b461bd17bd20b37cf920d73d9a5b025d615317e64176a1a8d601926560d00df4df5dbb492a0922316a00d89
|
data/bin/renstar.rb
CHANGED
|
@@ -11,25 +11,25 @@ options = {}
|
|
|
11
11
|
USAGE = ''' Usage: renstar.rb command [value]
|
|
12
12
|
|
|
13
13
|
Informational Commands:
|
|
14
|
-
info
|
|
15
|
-
sensors
|
|
16
|
-
runtimes -
|
|
17
|
-
alerts
|
|
14
|
+
info - Show current settings
|
|
15
|
+
sensors - Show current Sensor reading
|
|
16
|
+
runtimes - Show last 7 days of usage times
|
|
17
|
+
alerts - Show alerts and their statuses
|
|
18
18
|
|
|
19
19
|
Control Commands:
|
|
20
20
|
Note: Temp values are integers. Device settings determine units.
|
|
21
|
-
heat $TEMP
|
|
22
|
-
cool $TEMP
|
|
21
|
+
heat $TEMP - Heat to $TEMP
|
|
22
|
+
cool $TEMP - Cool to $TEMP
|
|
23
23
|
auto $LO_TEMP $HI_TEMP - Keep temp in between two temps
|
|
24
|
-
off
|
|
25
|
-
fan_on
|
|
26
|
-
fan_off
|
|
27
|
-
fan_toggle
|
|
28
|
-
schedule_on
|
|
29
|
-
schedule_off
|
|
30
|
-
schedule_toggle
|
|
31
|
-
home
|
|
32
|
-
away
|
|
24
|
+
off - Turn off heating and/or cooling
|
|
25
|
+
fan_on - Turn on the fan
|
|
26
|
+
fan_off - Turn on the fan
|
|
27
|
+
fan_toggle - Toggle the fan on/off
|
|
28
|
+
schedule_on - Turn on the schedule
|
|
29
|
+
schedule_off - Turn off the schedule
|
|
30
|
+
schedule_toggle - Toggle the schedule on/off
|
|
31
|
+
home - Set "Home"
|
|
32
|
+
away - Set "Away"
|
|
33
33
|
|
|
34
34
|
'''
|
|
35
35
|
|
data/lib/renstar/version.rb
CHANGED