Hi,
I have just made an automation with template triggers, but they only trigger when a certain condition has been the same for 72 hours, example below:
platform: template
value_template: >-
{{ states('sensor.average_temperature_week') | float <=
states('input_number.winter_temp') | float}}
for:
hours: 72
minutes: 0
seconds: 0
alias: Winter
id: Winter
Lets say 48 hours have passed and HA is restarted, what happens to this trigger? Does it start again from 0? Does it not trigger at all?
Thanks