keep thermostat generic, and remove HA's heat mode

This commit is contained in:
proddy
2019-11-05 18:21:13 +01:00
parent b7835b2d39
commit 26b8185f56
5 changed files with 49 additions and 39 deletions

View File

@@ -11,7 +11,8 @@
current_temperature_topic: "home/ems-esp/thermostat_data"
temperature_state_topic: "home/ems-esp/thermostat_data"
mode_state_template: "{{ value_json.hc1.mode }}"
mode_state_template: "{% if value_json.hc1.mode == 'manual' %} heat {% else %} {{value_json.hc1.mode}} {% endif %}"
current_temperature_template: "{{ value_json.hc1.currtemp }}"
temperature_state_template: "{{ value_json.hc1.seltemp }}"