Add documentation for current_temperature_template in climate.mqtt (#6482)

* Add documentation for current_temperature_template in climate.mqtt

* Add more undocumented features.
This commit is contained in:
mvn23 2018-10-04 20:00:06 +02:00 committed by Franck Nijhof
parent ea7e426940
commit e45cc36589

View File

@ -86,6 +86,10 @@ current_temperature_topic:
description: The MQTT topic on which to listen for the current temperature. description: The MQTT topic on which to listen for the current temperature.
required: false required: false
type: string 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: 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. 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 required: false
@ -102,6 +106,11 @@ mode_state_template:
description: A template to render the value received on the `mode_state_topic` with. description: A template to render the value received on the `mode_state_topic` with.
required: false required: false
type: template type: template
modes:
description: A list of supported modes.
required: false
default: ['auto', 'off', 'cool', 'heat', 'dry', 'fan_only']
type: list
temperature_command_topic: temperature_command_topic:
description: The MQTT topic to publish commands to change the target temperature. description: The MQTT topic to publish commands to change the target temperature.
required: false 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. description: A template to render the value received on the `fan_mode_state_topic` with.
required: false required: false
type: template type: template
fan_modes:
description: A list of supported fan modes.
required: false
default: ['auto', 'low', 'medium', 'high']
type: list
swing_mode_command_topic: swing_mode_command_topic:
description: The MQTT topic to publish commands to change the swing mode. description: The MQTT topic to publish commands to change the swing mode.
required: false 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. description: A template to render the value received on the `swing_mode_state_topic` with.
required: false required: false
type: template type: template
swing_modes:
description: A list of supported swing modes.
required: false
default: ['on', 'off']
type: list
away_mode_command_topic: away_mode_command_topic:
description: The MQTT topic to publish commands to change the away mode. description: The MQTT topic to publish commands to change the away mode.
required: false required: false