It’s designed to switch off the motion lights and not when they are switched on manually.
based on the brightness value, which is 100% for manually switched on lights and 95% when turned on by the motion sensor. The automation turns the lights on but won’t turn them off.
Suspect it’s something really simple?? I did create the whole automation using the visual editor. Any help would be much appreciated
Are you familiar with how action conditions work? If they evaluate to false, the automation terminates and doesn’t continue processing any subsequent actions.
Your automation is designed to trigger when the kitchen motion sensor turns on. Then the first action condition checks if the kitchen motion sensor has been off for at least 2 minutes. This condition can never be true because the motion sensor just triggered moments earlier (and it’s on). The condition doesn’t wait for the sensor to turn off for 2 minutes, it checks if it has been off for the past 2 minutes.
@123 Thanks for your helpful replies, I guess its simpler to break into two separate automations.
I have always struggled a bit with conditions, but it makes complete sense the way you explained it. So what if I added a wait for say 3 minutes and then checked the motion sensor the automation would work??