Forked from rvdlee/timed_motion_light_plus_light_strength.yaml
Last active
November 2, 2023 05:17
-
-
Save ahhwoodrow/52054e12492e1ae880d565fcc30e64cd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
blueprint: | |
name: Timed Motion-activated Light | |
description: Turn on a light when motion is detected within a certain time contraint. | |
domain: automation | |
input: | |
motion_entity: | |
name: Motion Sensor | |
selector: | |
entity: | |
domain: binary_sensor | |
device_class: motion | |
light_target: | |
name: Light | |
selector: | |
target: | |
entity: | |
domain: light | |
light_strength: | |
name: Light Strength | |
description: Light level for configured lamps on trigger. | |
default: 50 | |
selector: | |
number: | |
min: 0 | |
max: 100 | |
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 | |
trigger: | |
platform: state | |
entity_id: !input motion_entity | |
from: "off" | |
to: "on" | |
condition: or | |
conditions: | |
- condition: sun | |
after: sunset | |
- condition: sun | |
before: sunrise | |
action: | |
- service: light.turn_on | |
target: !input light_target | |
data: | |
brightness_pct: !input light_strength | |
- 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment