1
0
ansible-home-assistant/configuration/automations/bathroom-lights.yaml

66 lines
1.7 KiB
YAML

- id: button-lights-on
alias: '[Bathroom] Lights On'
trigger:
- platform: state
entity_id: binary_sensor.bathroom_motion_occupancy
to: 'on'
- platform: state
entity_id: binary_sensor.bathroom_door_open_close
to: 'on'
action:
- service: script.bathroom_lights_on
mode: single
- id: bathroom-lights-off
alias: '[Bathroom] Lights Off'
mode: restart
trigger:
- platform: state
entity_id: binary_sensor.bathroom_motion_occupancy
for: '0:05:00'
from: 'on'
to: 'off'
- platform: state
entity_id: binary_sensor.shower_motion
for: '0:02:00'
from: 'on'
to: 'off'
condition:
- condition: state
entity_id: binary_sensor.bathroom_motion_occupancy
for: '0:05:00'
state: 'off'
- condition: state
entity_id: binary_sensor.shower_motion
for: '0:02:00'
state: 'off'
action:
- service: script.bathroom_lights_off
- id: button-bathroom-on-off
alias: '[Bathroom] Button On/Off'
trigger:
- device_id: 36bf09a72c8115dd3afd832e83cf38ea
domain: zha
platform: device
type: remote_button_alt_short_press
subtype: button_1
- device_id: 36bf09a72c8115dd3afd832e83cf38ea
domain: zha
platform: device
type: remote_button_alt_short_press
subtype: button_2
action:
- service: script.bathroom_lights_toggle
- choose:
- conditions:
- condition: state
entity_id: light.bathroom_lights
state: 'on'
sequence:
- service: automation.turn_on
target:
entity_id:
- automation.bathroom_shower_motion_off
- automation.bathroom_lights_off
mode: single