I need your help with an automation.
I have an thermostat wich can be set to an specific temperature.
What I want to achieve is a notification when the temperature is changed.
In my case the entity_id is: “climate.oeq0239467”
The state ist alway set to “manual”
The attribute I want to monitor is called: “temperature”
I tried it with:
- action:
- alias: notify_tempchange
data_template:
title: >
Bedroom
message: >
Temperature is set to {{ states.climate.oeq0240841.attributes.temperature }}°C
service: notify.kodi
alias: tempchange
condition: []
trigger:
- platform: template
value_template: '{{ states.climate.oeq0240841.attributes.temperature < 26 }}'
But this only works once in the beginning. I gues because all other times, the temperature never goes above the value of 26.
How can I trigger every change of the attribute?