1
0
Fork 0
ansible-home-assistant/automations/files/bathroom-shower-motion.yaml

24 lines
560 B
YAML
Raw Normal View History

2021-01-01 02:59:21 +00:00
- id: bathroom-shower-motion-on
2021-01-07 00:48:14 +00:00
alias: '[Bathroom] Shower Motion On'
2021-01-01 02:59:21 +00:00
mode: restart
trigger:
- platform: state
entity_id: binary_sensor.shower_motion
from: 'off'
to: 'on'
action:
- service: light.turn_on
entity_id: shower_lights
2021-01-01 02:59:21 +00:00
- id: bathroom-shower-motion-off
2021-01-07 00:48:14 +00:00
alias: '[Bathroom] Shower Motion Off'
2021-01-01 02:59:21 +00:00
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: shower_lights