Created
December 27, 2019 01:07
-
-
Save flamingm0e/62391d59fcd0d70df1858e3b7604d031 to your computer and use it in GitHub Desktop.
MQTT Climate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- platform: mqtt | |
name: Downstairs Thermostat | |
retain: true | |
payload_on: "on" | |
payload_off: "off" | |
modes: | |
- "Off" | |
- "Heat" | |
- "Cool" | |
- "Auto" | |
fan_modes: | |
- "On Low" | |
- "Auto Low" | |
value_template: "{{ value_json.value }}" | |
action_topic: "homeassistant/downstairs_thermostat/66/1/0" | |
mode_command_topic: "homeassistant/downstairs_thermostat/64/1/0/set" | |
mode_state_topic: "homeassistant/downstairs_thermostat/64/1/0" | |
fan_mode_command_topic: "homeassistant/downstairs_thermostat/68/1/0/set" | |
fan_mode_state_topic: "homeassistant/downstairs_thermostat/68/1/0" | |
current_temperature_topic: "homeassistant/downstairs_thermostat/49/1/1" | |
temperature_low_command_topic: "homeassistant/downstairs_thermostat/67/1/1/set" | |
temperature_high_command_topic: "homeassistant/downstairs_thermostat/67/1/2/set" | |
temperature_low_state_topic: "homeassistant/downstairs_thermostat/67/1/1" | |
temperature_high_state_topic: "homeassistant/downstairs_thermostat/67/1/2" | |
precision: 1.0 | |
min_temp: 65.0 | |
max_temp: 85.0 | |
- platform: mqtt | |
name: Upstairs Thermostat | |
retain: true | |
payload_on: "on" | |
payload_off: "off" | |
modes: | |
- "off" | |
- "heat" | |
- "cool" | |
- "auto" | |
fan_modes: | |
- "On Low" | |
- "Auto Low" | |
value_template: "{{ value_json.value }}" | |
action_topic: "homeassistant/upstairs_thermostat/66/1/0" | |
mode_command_topic: "homeassistant/upstairs_thermostat/64/1/0/set" | |
mode_state_topic: "homeassistant/upstairs_thermostat/64/1/0" | |
fan_mode_command_topic: "homeassistant/upstairs_thermostat/68/1/0/set" | |
fan_mode_state_topic: "homeassistant/upstairs_thermostat/68/1/0" | |
current_temperature_topic: "homeassistant/upstairs_thermostat/49/1/1" | |
temperature_low_command_topic: "homeassistant/upstairs_thermostat/67/1/1/set" | |
temperature_high_command_topic: "homeassistant/upstairs_thermostat/67/1/2/set" | |
temperature_low_state_topic: "homeassistant/upstairs_thermostat/67/1/1" | |
temperature_high_state_topic: "homeassistant/upstairs_thermostat/67/1/2" | |
precision: 1.0 | |
min_temp: 65.0 | |
max_temp: 85.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment