Skip to content
Snippets Groups Projects
Commit cd564a5e authored by Anton Sarukhanov's avatar Anton Sarukhanov
Browse files

ic

parents
No related branches found
No related tags found
No related merge requests found
blueprint:
name: Motion and brightness activated Light V2
description: Turn on a light when motion is detected and it is dark enough or night.
domain: automation
source_url: https://git.xhost.io/anton/ha-blueprints/-/blob/master/motion_light.yaml
input:
motion_entity:
name: Motion Sensor
selector:
entity:
domain: binary_sensor
device_class: motion
multiple: true
light_target:
name: Light(s) to control
selector:
target:
entity:
domain: light
no_motion_wait:
name: Wait time
description: Time to leave the light on after last motion is detected.
default: 120
selector:
number:
min: 0
max: 3600
unit_of_measurement: seconds
# If motion is detected within the delay,
# we restart the script.
mode: restart
max_exceeded: silent
# making the input variable usable in the condition
variables:
lights: !input "light_target"
trigger:
platform: state
entity_id: !input motion_entity
from: "off"
to: "on"
action:
- service: light.turn_on
target: !input light_target
- wait_for_trigger:
platform: state
entity_id: !input motion_entity
from: "on"
to: "off"
- delay: !input no_motion_wait
- service: light.turn_off
target: !input light_target
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment