I currently have a climate.tabletop_heater entity, with an attribute of what the temperature is currently set to (temperature). I have created an input_number slider with the min and max value of the heater, and I would like to set that when a climate.set_temperature command is set, the number slider is moved to that value. In node red, how do I create a flow that triggers when that set value is punched in? I tried to look for a trigger, but I don’t know which one would work.
So you want to trigger a flow when an attribute of an entity changes?
You could create a template sensor with the attribute you are looking for and then trigger the flow when the state of this template sensor changes.
1 Like
yup, did exactly that. Thank you for response