I am trying to figure out why my automation doesn't seem to be doing anything. The code of the automation is the following:
alias: Heizung remote Temp
description: ""
triggers:
- trigger: state
id: az
entity_id:
- sensor.aqsensorarbeitszimmer_temperature
- trigger: state
id: wz
entity_id:
- sensor.rauchmelder_wz_temperature
conditions: []
actions:
- target:
entity_id: number.heizung{{ trigger.id }}_remote_temperature
data:
value: "{{ trigger.to_state.state | float }}"
action: input_number.set_value
mode: single
The automation seems to run correctly but for some reason the _remote_temperature is just not set. The trace looks good and there is no error there:
Executed: 14 January 2025 at 09:06:19
Result:
params:
domain: input_number
service: set_value
service_data:
value: 18.92
entity_id:
- number.heizungaz_remote_temperature
target:
entity_id:
- number.heizungaz_remote_temperature
running_script: false
but if I look at the number.heizungaz_remote_temperature entity it is not updated. Updating the entity manually works okay.