24 lines
566 B
YAML
24 lines
566 B
YAML
|
- id: hallway-motion-on
|
||
|
alias: '[Hallway] Motion On'
|
||
|
mode: restart
|
||
|
trigger:
|
||
|
- platform: state
|
||
|
entity_id: binary_sensor.hallway_motion_sensor
|
||
|
from: 'off'
|
||
|
to: 'on'
|
||
|
action:
|
||
|
- service: light.turn_on
|
||
|
entity_id: light.hallway_lightstrip
|
||
|
- id: hallway-motion-off
|
||
|
alias: '[Hallway] Motion Off'
|
||
|
mode: restart
|
||
|
trigger:
|
||
|
- platform: state
|
||
|
entity_id: binary_sensor.hallway_motion_sensor
|
||
|
for: '0:02:00'
|
||
|
from: 'on'
|
||
|
to: 'off'
|
||
|
action:
|
||
|
- service: light.turn_off
|
||
|
entity_id: light.hallway_lightstrip
|