Last active
January 16, 2025 19:48
-
-
Save Pastaloverzzz/51257818d0d6901c6ae846928c185ffd to your computer and use it in GitHub Desktop.
Test light Turning light on or off based on motion detection with sun condition
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: Motion-activated light with sun condition | |
description: Turn on a light when motion is detected and a sunset setting. | |
domain: automation | |
input: | |
motion_sensor: | |
name: Motion Sensor | |
selector: | |
entity: | |
filter: | |
- domain: binary_sensor | |
device_class: motion | |
target_light: | |
name: Light | |
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.0 | |
max: 3600.0 | |
unit_of_measurement: seconds | |
mode: slider | |
step: 1.0 | |
sunset_offset: | |
name: Offset to turn on lights | |
description: Define offset to sunset | |
default: 60 | |
selector: | |
number: | |
min: 0.0 | |
max: 240.0 | |
unit_of_measurement: minutes | |
mode: slider | |
step: 1.0 | |
sunrise_offset: | |
name: Offset to turn off lights | |
description: Define offset to sunrise | |
default: 45 | |
selector: | |
number: | |
min: 0.0 | |
max: 240.0 | |
unit_of_measurement: minutes | |
mode: slider | |
step: 1.0 | |
source_url: https://community.home-assistant.io/t/turn-light-on-and-off-based-on-detected-motion-with-sun-condition/266013 | |
mode: restart | |
max_exceeded: silent | |
triggers: | |
trigger: state | |
entity_id: !input motion_sensor | |
from: 'off' | |
to: 'on' | |
condition: | |
- condition: or | |
conditions: | |
- condition: sun | |
after: sunset | |
after_offset: !input sunset_offset | |
- condition: sun | |
before: sunrise | |
before_offset: !input sunrise_offset | |
actions: | |
- action: light.turn_on | |
target: !input target_light | |
- wait_for_trigger: | |
trigger: state | |
entity_id: !input motion_sensor | |
from: 'on' | |
to: 'off' | |
- delay: !input no_motion_wait | |
- action: light.turn_off | |
target: !input target_light |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment