Hi,
The state of the below sensor change from:
"Partly cloudy. High chance of showers. "
to
"Showers easying. Winds northerly"
but my automation didn't trigger because it stopped at the condition:
- trigger: state
entity_id:
- sensor.weather_extended_text_0
conditions:
- condition: template
value_template: "{{ trigger.to_state.state != trigger.from_state.state }}"```
I want to make it so the automation only runs when the state of my sensor changes to something different to its previous state.
Anyone know what I am doing wrong?
TIA 🙂