I have an entity-filter card that only show up on top of my view if any of the two garage doors are open. They work perfect but it shows ANY time they are open. I would like to delay this, only if the garage has been opened for more than 15 minutes. What would be the best way to do this? Is this possible with the entity-filter or by executing a script?
type: entity-filter
entities:
- cover.garage_rey
- cover.garage_ned
state_filter:
- open
card:
type: entities
title: Warning Garage Open
show_empty: false
Thanks. What I ended up doing was to create an automation that when the garage is open (trigger), wait for 15 minutes and then run an action to toggle on an input boolean. That input boolean entity is the one I use in the filter.
repeat and skip_first build a great team. The alert starts, as soon as the garage door opens. As skip_first is set, the first notification gets fired after two minutes, and then every two minutes. You can set specific times with repeat, so the minutes between new notifications can be fitted perfectly.