mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-08 00:39:50 +03:00
21 lines
603 B
YAML
21 lines
603 B
YAML
- platform: mqtt
|
|
name: Thermostat
|
|
modes:
|
|
- low
|
|
- manual
|
|
- auto
|
|
|
|
mode_state_topic: "home/ems-esp/thermostat_data"
|
|
current_temperature_topic: "home/ems-esp/thermostat_data"
|
|
temperature_state_topic: "home/ems-esp/thermostat_data"
|
|
|
|
temperature_command_topic: "home/ems-esp/thermostat_cmd_temp"
|
|
mode_command_topic: "home/ems-esp/thermostat_cmd_mode"
|
|
|
|
mode_state_template: "{{ value_json.thermostat_mode }}"
|
|
current_temperature_template: "{{ value_json.thermostat_currtemp }}"
|
|
temperature_state_template: "{{ value_json.thermostat_seltemp }}"
|
|
|
|
temp_step: 0.5
|
|
|