mhrivnak / radiotherm

python client library for Radio Thermostat wifi-enabled home thermostats
BSD 3-Clause "New" or "Revised" License
50 stars 40 forks source link

Added support to CT80 for setting humidity setpoint #28

Closed pvince closed 6 years ago

pvince commented 6 years ago

From section 2.2.17: Thermostat Humidifier Setpoint in RTCOAWiFIAPIV1_3.pdf

I want this so I can write a dynamic script that changes the humidifier setpoint based on the external temperature.

craftyguy commented 6 years ago

LGTM!

>>> tstat.humidifier_setpoint
{'raw': 20.0}
>>> tstat.humidifier_setpoint = 99
>>> tstat.humidifier_setpoint
{'raw': 99.0}
craftyguy commented 6 years ago

merged. thanks for the contribution!