From e45cc3658964027ec7cd8db3fcb5ca1a320236ca Mon Sep 17 00:00:00 2001 From: mvn23 Date: Thu, 4 Oct 2018 20:00:06 +0200 Subject: [PATCH] Add documentation for current_temperature_template in climate.mqtt (#6482) * Add documentation for current_temperature_template in climate.mqtt * Add more undocumented features. --- source/_components/climate.mqtt.markdown | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/source/_components/climate.mqtt.markdown b/source/_components/climate.mqtt.markdown index c9179e230b9..96f98766b54 100644 --- a/source/_components/climate.mqtt.markdown +++ b/source/_components/climate.mqtt.markdown @@ -86,6 +86,10 @@ current_temperature_topic: description: The MQTT topic on which to listen for the current temperature. required: false type: string +current_temperature_template: + description: A template with which the value received on `current_temperature_topic` will be rendered. + required: false + type: template power_command_topic: description: The MQTT topic to publish commands to change the power state. This is useful if your device has a separate power toggle in addition to mode. required: false @@ -102,6 +106,11 @@ mode_state_template: description: A template to render the value received on the `mode_state_topic` with. required: false type: template +modes: + description: A list of supported modes. + required: false + default: ['auto', 'off', 'cool', 'heat', 'dry', 'fan_only'] + type: list temperature_command_topic: description: The MQTT topic to publish commands to change the target temperature. required: false @@ -126,6 +135,11 @@ fan_mode_state_template: description: A template to render the value received on the `fan_mode_state_topic` with. required: false type: template +fan_modes: + description: A list of supported fan modes. + required: false + default: ['auto', 'low', 'medium', 'high'] + type: list swing_mode_command_topic: description: The MQTT topic to publish commands to change the swing mode. required: false @@ -138,6 +152,11 @@ swing_mode_state_template: description: A template to render the value received on the `swing_mode_state_topic` with. required: false type: template +swing_modes: + description: A list of supported swing modes. + required: false + default: ['on', 'off'] + type: list away_mode_command_topic: description: The MQTT topic to publish commands to change the away mode. required: false