Hi, I have 2 thermostatic valve in one room (Eurotronics Sprint, zwave) and I want to syncrozies them, meaning, if I change manually valve1 that the settemp is sent to valve2. It is possible to set a value via script but not the value from an anther on?
alias: Testscript
sequence:
- service: climate.set_temperature
entity_id: climate.thermostat_valve_2
data_template:
temperature: 20
mode: single
works perfectly, but here
alias: Testscript
sequence:
- service: climate.set_temperature
entity_id: climate.thermostat_valve_2
data_template:
temperature: {{ state_attr("climate.thermostatic_valve","temperature") }}
mode: single
the value of the attribute is not recognized / empty. The template works fine in dev.-tool / template. Any hint?