let me clarify what I am after. Iâll start with just motion light what Iâm after.
when I walk into the Kitchen (when the main kitchen lights are OFF). after sunset I want the scene scene.kitchen_motion_light_on
to turn on, and continue to stay on if there is motion.
Now IF I turn ON the main Kitchen Light.
If I walk into the Kitchen, and turn on the Main Kitchen Lights, I want a bypass to disable the scene to turn ON scene.kitchen_motion_light_off
, as If I am cooking at the hob, as there is limited movement the 1.5 timeout is not enough and can turn off the Cabinet and floor LEDâs.
so what I was doing is to have a separate automation the turn ON scene.kitchen_motion_light_on
when the main lights tured turned ON (ONLY after sunset), and turn on scene scene.kitchen_motion_light_off
when the main lights are turned OFF.
EDIT:
after testing I have the folllwing,
include_bypass:
- bypass_enabled_turn_on
turns on the scene scene.kitchen_motion_light_on
when main lights turn on (removes the need for 2nd automation, which is good)
and
include_bypass:
- bypass_enabled_stop
stops the scene scene.kitchen_motion_light_off
from being tuned on, if NO motion. this is what I want it to do.
What I am after is to allow BOTH options to be allowed. ATM IF I enable BOTH options, it only recognises the last option bypass_enabled_stop
ie.
include_bypass:
- bypass_enabled_turn_on
- bypass_enabled_stop
- turn of the scene when main lights are turned on, if after sunset,
- also allow the stop to be actioned if the main lights are ON.
Hope this makes more sense.