Documented new precision config option in generic_thermostat. (#7434)

This commit is contained in:
Nick Touran 2018-11-08 00:39:40 -08:00 committed by Fabian Affolter
parent eb1c0b25b0
commit 4601d0882d

View File

@ -82,6 +82,11 @@ away_temp:
description: Set the temperature used by "away_mode". If this is not specified, away_mode feature will not get activated.
required: false
type: float
precision:
description: "The desired precision for this device. Can be used to match your actual thermostat's precision. Supported values are `0.1`, `0.5` and `1.0`."
required: false
type: float
default: "`0.5` for Celsius and `1.0` for Fahrenheit."
{% endconfiguration %}
A full configuration example looks like the one below. `min_cycle_duration` and `keep_alive` must contain at least one of the following entries: `days:`, `hours:`, `minutes:`, `seconds:` or `milliseconds:`.
@ -109,4 +114,5 @@ climate:
minutes: 3
initial_operation_mode: "off"
away_temp: 16
precision: 0.1
```