htcc 0.2.0 → 0.3.0
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/htcc.gemspec +1 -1
- data/lib/htcc/thermostat.rb +2 -2
- 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: 9d2ac4838a69bf4dcef314f14059014aa627f6429c0e44c19b9c0ea546e0dd7c
|
4
|
+
data.tar.gz: 65c2a961af5a31027197d28a6b7b65a3f9ed5d15ab3951a6cbd51911f226b939
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7a535e2721b5aa8cf986dca91d3e2f357dcc46e7803578c5fef580bef0f4f94b473b5d00eb12229fcbbe5b419058f6fb828c88c04434a2ce5168ac43ebebb08b
|
7
|
+
data.tar.gz: e6b2d3659b08d587a807e5696819a2c92c7004ad8d99e0b6bce5d2f966a05411986bed45b83a599a451a41cd6557d6c496a821ab23aa8b031335f1f10809649f
|
data/htcc.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'htcc'
|
3
|
-
s.version = '0.
|
3
|
+
s.version = '0.3.0'
|
4
4
|
s.summary = "A Ruby client for the Honeywell Total Connect Comfort API"
|
5
5
|
s.description = "This gem can be used to control Honeywell thermostats that use the Total Connect Comfort platform."
|
6
6
|
s.author = 'Lee Folkman'
|
data/lib/htcc/thermostat.rb
CHANGED
@@ -106,7 +106,7 @@ module HTCC
|
|
106
106
|
end
|
107
107
|
|
108
108
|
def cool_setpoint_range
|
109
|
-
|
109
|
+
(min_cool_setpoint..max_cool_setpoint)
|
110
110
|
end
|
111
111
|
|
112
112
|
# Heating temperature setting
|
@@ -122,7 +122,7 @@ module HTCC
|
|
122
122
|
end
|
123
123
|
|
124
124
|
def heat_setpoint_range
|
125
|
-
|
125
|
+
(min_heat_setpoint..max_heat_setpoint)
|
126
126
|
end
|
127
127
|
|
128
128
|
def resume_schedule
|