32 lines
724 B
YAML
32 lines
724 B
YAML
|
- id: bathroom-shower-motion-on
|
||
|
alias: Bathroom Shower Motion On
|
||
|
mode: restart
|
||
|
trigger:
|
||
|
- platform: state
|
||
|
entity_id: binary_sensor.shower_motion
|
||
|
from: 'off'
|
||
|
to: 'on'
|
||
|
action:
|
||
|
- service: light.turn_on
|
||
|
entity_id:
|
||
|
- light.shower_1
|
||
|
- light.shower_2
|
||
|
- light.shower_3
|
||
|
- light.shower_4
|
||
|
- id: bathroom-shower-motion-off
|
||
|
alias: Bathroom Shower Motion Off
|
||
|
mode: restart
|
||
|
trigger:
|
||
|
- platform: state
|
||
|
entity_id: binary_sensor.shower_motion
|
||
|
for: '0:01:00'
|
||
|
from: 'on'
|
||
|
to: 'off'
|
||
|
action:
|
||
|
- service: light.turn_off
|
||
|
entity_id:
|
||
|
- light.shower_1
|
||
|
- light.shower_2
|
||
|
- light.shower_3
|
||
|
- light.shower_4
|