From 280c5a85eabe925cbfaafb6b3e881bb82989cbed Mon Sep 17 00:00:00 2001 From: Diogo Soares Date: Tue, 6 Feb 2018 23:08:46 -0500 Subject: [PATCH] Added parameters CONF_INITIAL_FAN_MODE, CONF_INITIAL_MODE, CONF_INITIAL_SWING_MODE, ATTR_MIN_TEMP, ATTR_MAX_TEMP, ATTR_TARGET_TEMP_STEP --- source/_components/climate.mqtt.markdown | 31 ++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/source/_components/climate.mqtt.markdown b/source/_components/climate.mqtt.markdown index 504610dea470..481ab6d5010d 100644 --- a/source/_components/climate.mqtt.markdown +++ b/source/_components/climate.mqtt.markdown @@ -54,6 +54,36 @@ initial: required: false type: number default: 21 +initial_fan_mode: + description: Set the initial fan mode. + required: false + type: string + default: low +initial_mode: + description: Set the initial operation. + required: false + type: string + default: off +initial_swing_mode: + description: Set the initial swing mode. + required: false + type: string + default: off +min_temp: + description: Set the minimum target temperature. + required: false + type: number + default: 7 +max_temp: + description: Set the maximum target temperature. + required: false + type: number + default: 30 +target_temp_step: + description: Set the target temperature step. + required: false + type: number + default: 1 payload_on: description: The payload that represents enabled state. required: false @@ -195,6 +225,7 @@ climate: - off - on - auto + initial_mode: auto mode_command_topic: "study/ac/mode/set" mode_state_topic: "study/ac/mode/state" mode_state_template: "{{ value_json }}"