I am trying to fire and event when a input slider time (“sensor.christbaum_off_time”) is arrived.
…but I don’t see that message. Neither in the logbook nore in my pushbullet.
I am trying to fire and event when a input slider time (“sensor.christbaum_off_time”) is arrived.
…but I don’t see that message. Neither in the logbook nore in my pushbullet.
That automation didn’t work because you try to compare objects, not values.
You should use states("sensor.time")
or states.sensor.time.state
value_template: '{{ states("sensor.time") == states("sensor.christbaum_off_time") }}'