I’d like my phone to notify me every five minutes while the garage door is open. I think it’s a trigger based on a state. Any pointers?
this looks close Notify if garage door is open for longer than 5 minutes after 8pm
I’d like my phone to notify me every five minutes while the garage door is open. I think it’s a trigger based on a state. Any pointers?
this looks close Notify if garage door is open for longer than 5 minutes after 8pm
I have a similar thing set up as an automation which looks like this in the simple setup
WHEN: your garage door position sensor changes from CLOSED to OPEN for time
THEN DO: perform action 'Notifications: Send a notification via mobile_app_your phone
YAML version
alias: “Notify: Garage Door Open”
description: Sends message if garage door is open for > 1 minute
mode: single
triggers:
Yes, a state trigger based on the cover state & your action could include a ‘repeat until’ loop until the door is closed.
Oh yes, totally forgot about Alerts. Nice.