From 8485c179cbeaad53fea7e1cde593cfb7656a3ec2 Mon Sep 17 00:00:00 2001 From: Nash Kaminski Date: Wed, 9 May 2018 04:26:51 -0500 Subject: [PATCH] Documentation for #14296: Support control of away mode and hold mode in Venstar component. Correctly detect humidifiers. (#5298) --- source/_components/climate.venstar.markdown | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/source/_components/climate.venstar.markdown b/source/_components/climate.venstar.markdown index f054465f729..253e8700675 100644 --- a/source/_components/climate.venstar.markdown +++ b/source/_components/climate.venstar.markdown @@ -25,7 +25,13 @@ Currently supported functionality: - Setting heat/cool temperature when the thermostat is in the appropriate mode. - Changing the operation mode of the thermostat (heat/cool/off/auto) - Turning the fan on/off -- Setting the humidity level +- Reading and setting the humidity level and limits +- Turning away mode on/off +- Turning hold mode on/off + +The following values are supported for the hold_mode state attribute: +- `off`: *Enables* the scheduling functionality. +- `temperature`: *Disables* the schedule and holds the set temperature indefinitely. Note - Please ensure you update your thermostat to the latest firmware. Currently tested on firmware 5.10. @@ -61,6 +67,11 @@ timeout: required: false type: int default: 5 +humidifier: + description: Report humidity and expose humidifier setpoints. + required: false + type: boolean + default: true {% endconfiguration %} ## {% linkable_title Full configuration sample %} @@ -74,4 +85,5 @@ climate: username: OPTIONAL_AUTH_USER_HERE password: OPTIONAL_AUTH_PASS_HERE timeout: 5 + humidifier: False ```