I have an automation that turns my driveway lights on when motion is detected. It normally works fairly well but it was windy last night and that caused the automation to trip endlessly as my trees and bushes were whipping around. Lights would come on, shut off 10 minutes later, then turn right back on again. It basically did this all night until I disabled the automation.
I’ll do some fine tuning of the motion sensors which will help and I’m considering adding a condition to the automation where it won’t trip if the wind speed is above a certain level but how can I add some kind of cool down timer to the automation to prevent it from endlessly engaging?
There may be a more straight forward way to do it now, but the traditional way is to add a condition to the automation based on the automation’s (or maybe the light or motion detector) last_triggered property. You need, AFAIK, to use a template for this.
A condition with something like this should make it so it can’t fire more than once every hour (60 seconds times 60 minutes):
{{ (as_timestamp(now()) - as_timestamp(state_attr('automation.driveway','last_triggered'))) > 60 * 60 }}
Nice idea! It appears that this can now be done directly in the automation too.
Of course that leads to a problem where it will only trigger once an hour no matter what, which may cause a different frustration.
I’m starting to think that the best answer may be to re-position the motion sensor so that it cannot see my landscaping whipping around in the wind.
I’m using the timer helper for this sort of thing. You can have a condition in your automation for not triggering if the cool down timer is active.
I didn’t know that the timer helper existed, I’ll check that out!
You could use
mode: single
, and then add a 10 minute delay onto the end of the actions.That’s a good suggestion, I’ll have to think on that one.
A quick and dirty solution would be using a date input helper, that get’s updated with every run and is used in a condition. But there is probably a smarter way
Add a door sensor to your setup? Have it trip, the lights then wait for the door to open and close before it trips again.
I mean let’s face it, if someone keeps coming into your garden and doesn’t knock on your doorz at nightz you don’t want them to be able to see where they’re going.
Just a thought.
That’s a fair idea and I’ll consider it!