Update motion light

This commit is contained in:
Philipp Klueter
2025-03-31 07:33:35 +02:00
parent 48d306a2cf
commit fce9b31e3c

View File

@@ -17,6 +17,13 @@ blueprint:
target: target:
entity: entity:
domain: light domain: light
disabled_when_on:
name: Disabled when on
description: 'The motion activation is disabled when one of these lights is on.'
selector:
target:
entity:
domain: light
no_motion_wait: no_motion_wait:
name: Wait time name: Wait time
description: Time to leave the light on after last motion is detected. description: Time to leave the light on after last motion is detected.
@@ -51,26 +58,29 @@ max_exceeded: silent
triggers: triggers:
- trigger: state - trigger: state
entity_id: !input motion_entity entity_id: !input motion_entity
from: "off" from: 'off'
to: "on" to: 'on'
conditions: conditions:
- condition: numeric_state - condition: numeric_state
entity_id: !input lux_entity entity_id: !input lux_entity
below: 5 below: 5
- condition: state
entity_id: !disabled_when_on
state: 'off'
actions: actions:
- alias: "Turn on the light" - alias: 'Turn on the light'
action: light.turn_on action: light.turn_on
target: !input light_target target: !input light_target
- alias: "Wait until there is no motion from device" - alias: 'Wait until there is no motion from device'
wait_for_trigger: wait_for_trigger:
- trigger: state - trigger: state
entity_id: !input motion_entity entity_id: !input motion_entity
from: "on" from: 'on'
to: "off" to: 'off'
- alias: "Wait the number of seconds that has been set" - alias: 'Wait the number of seconds that has been set'
delay: !input no_motion_wait delay: !input no_motion_wait
- alias: "Turn off the light" - alias: 'Turn off the light'
action: light.turn_off action: light.turn_off
target: !input light_target target: !input light_target