From 91e34eb80119775c0db54ec39761cd15d71de8b0 Mon Sep 17 00:00:00 2001 From: Klaas Schoute Date: Tue, 16 Oct 2018 19:26:50 +0200 Subject: [PATCH] Update Radiotherm climate component configuration variable (#6851) * Update Radiotherm climate component configuration variable * Fix --- .../_components/climate.radiotherm.markdown | 27 ++++++++++++++----- 1 file changed, 21 insertions(+), 6 deletions(-) diff --git a/source/_components/climate.radiotherm.markdown b/source/_components/climate.radiotherm.markdown index f4d08db1072..311fe0b3f42 100644 --- a/source/_components/climate.radiotherm.markdown +++ b/source/_components/climate.radiotherm.markdown @@ -30,12 +30,27 @@ climate: - platform: radiotherm ``` -Configuration variables: - -- **host** (*Optional*): List of your Radiotherm thermostats. If not provided the thermostats will be auto-detected. -- **away_temperature_heat** (*Optional*): Target heating temperature in Fahrenheit for away mode. This is separate from away mode in the app. Defaults to '60'. -- **away_temperature_cool** (*Optional*): Target cooling temperature in Fahrenheit for away mode. This is separate from away mode in the app. Defaults to '85'. -- **hold_temp** (*Optional*): Boolean to control if Home Assistant temperature adjustments hold (`True`) or are temporary (`False`). Defaults to `False`. +{% configuration %} +host: + description: List of your Radiotherm thermostats. If not provided the thermostats will be auto-detected. + required: false + type: list +away_temperature_heat: + description: Target heating temperature in Fahrenheit for away mode. This is separate from away mode in the app. + required: false + default: 60 + type: float +away_temperature_cool: + description: Target cooling temperature in Fahrenheit for away mode. This is separate from away mode in the app. + required: false + default: 85 + type: float +hold_temp: + description: Boolean to control if Home Assistant temperature adjustments hold (`true`) or are temporary (`false`). + required: false + default: false + type: boolean +{% endconfiguration %} Set `hold_temp: True` if you want temperature settings from Home Assistant to override a thermostat schedule on the thermostat itself. Otherwise Home Assistant will perform temporary temperature changes.