I have time sensor with info " 2021-09-13 17:01:00 "
I want Automation that trigger at time but 15 min before.
I have try with
alias: Train1
description: ''
trigger:
- platform: template
value_template: >-
{{
as_timestamp(states('sensor.tag1'))|timestamp_custom('%H:%M',
true) == states('sensor.time') - 15 }}
condition: []
action:
- service: notify.telegram
data:
title: 'Tåg Status:'
message: 15 minuter kvar
mode: single
But is not working.
If I remove -15 is tiggor on time but I want to get notify 15 min befor.
Please Help…