Hi All,
I am trying to acheive the following;
When the target temperature on my radiator knob (TADO X via matter) changes, set the target room temperature of my MQTT radiator boosters to match this temperature.
I have already made this in YAML;
```alias: Sync Radiator Valves with Thermostat
description: ""
triggers:
- entity_id: climate.smart_radiator_thermostat_x
attribute: temperature
trigger: state
conditions: []
actions: - target:
entity_id:
- number.heatbooster_slaapkamer_achter_ambientcontrol_temp
data:
temperature: >-
{{ state_attr('climate.smart_radiator_thermostat_x', 'temperature') |
float }}
action: climate.set_temperature
mode: single
The Entity_ID are found via developer tools --> states, and I have attached them in the screenshots
I do see that it is getting triggered, but it does no write the data to the heatboosters
(third screenshot)