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

67 lines
1.8 KiB
YAML
Raw Normal View History

- 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
2023-06-07 16:17:45 +00:00
entity_id: binary_sensor.bathroom_shower_sensor_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
2023-06-07 16:17:45 +00:00
entity_id: binary_sensor.bathroom_shower_sensor_motion
for: '0:02:00'
state: 'off'
action:
- service: script.bathroom_lights_off
- id: button_bathroom_on_off
alias: '[Bathroom] Button On/Off'
2023-10-11 20:10:07 +00:00
mode: single
trigger:
2022-01-10 23:12:18 +00:00
- device_id: 36bf09a72c8115dd3afd832e83cf38ea
domain: zha
platform: device
2022-01-10 23:12:18 +00:00
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:
2022-01-30 16:37:13 +00:00
- 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
2023-10-11 20:10:07 +00:00
- service: script.bathroom_lights_toggle