Add source_url

This commit is contained in:
2025-11-03 17:40:55 +01:00
parent c922d8930c
commit 2782d934cc

View File

@@ -3,6 +3,7 @@ blueprint:
description: Turn on a light when motion is detected and lux is below a threshold. description: Turn on a light when motion is detected and lux is below a threshold.
domain: automation domain: automation
author: Philipp Klüter author: Philipp Klüter
source_url: https://git.klueter.dev/ThronRycer/HomeAssistant/raw/branch/main/blueprints/lights/motion-activated-with-lux-sensor.yml
input: input:
motion_entity: motion_entity:
name: Motion Sensor name: Motion Sensor
@@ -21,7 +22,7 @@ blueprint:
domain: light domain: light
disabled_when_on: disabled_when_on:
name: Disabled when on name: Disabled when on
description: 'The motion activation is disabled when one of these lights is on.' description: "The motion activation is disabled when one of these lights is on."
selector: selector:
target: target:
entity: entity:
@@ -60,8 +61,8 @@ 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
@@ -69,20 +70,20 @@ conditions:
below: 5 below: 5
- condition: state - condition: state
entity_id: !disabled_when_on entity_id: !disabled_when_on
state: 'off' 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