I have a timestamp type entity that displays itself as HH:MM[:SS]. I wish to have one action performed 2 hours before the time and one action 10 minutes after the time.
I have searched both this forum and the Internet as well but cannot seem to find any solution [without helper(s), blueprint(s) and/or configuration item(s)] for this.
So my question is: what do I need to modify to accomplish
triggers:
- trigger: time
at: >-
{{ as_timestamp
(as_datetime(states("sensor.my_next_alarm"))+timedelta(minutes=10)) }}
?
The above should launch action(s) at 10 minutes after sensor.my_next_alarm time. I know the sensor.my_next_alarm to be working as I can trigger action(s) against it directly.