Documentation for #14296: Support control of away mode and hold mode in Venstar component. Correctly detect humidifiers. (#5298)

This commit is contained in:
Nash Kaminski 2018-05-09 04:26:51 -05:00 committed by Fabian Affolter
parent 3fcf52ca1c
commit 8485c179cb

View File

@ -25,7 +25,13 @@ Currently supported functionality:
- Setting heat/cool temperature when the thermostat is in the appropriate mode. - Setting heat/cool temperature when the thermostat is in the appropriate mode.
- Changing the operation mode of the thermostat (heat/cool/off/auto) - Changing the operation mode of the thermostat (heat/cool/off/auto)
- Turning the fan on/off - 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. Note - Please ensure you update your thermostat to the latest firmware. Currently tested on firmware 5.10.
@ -61,6 +67,11 @@ timeout:
required: false required: false
type: int type: int
default: 5 default: 5
humidifier:
description: Report humidity and expose humidifier setpoints.
required: false
type: boolean
default: true
{% endconfiguration %} {% endconfiguration %}
## {% linkable_title Full configuration sample %} ## {% linkable_title Full configuration sample %}
@ -74,4 +85,5 @@ climate:
username: OPTIONAL_AUTH_USER_HERE username: OPTIONAL_AUTH_USER_HERE
password: OPTIONAL_AUTH_PASS_HERE password: OPTIONAL_AUTH_PASS_HERE
timeout: 5 timeout: 5
humidifier: False
``` ```