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

59 lines
1.8 KiB
YAML

- id: bathroom-mirror-lights-on
alias: '[Bathroom] Mirror Button Music'
trigger:
- device_id: 4d5298037e93ba11438409bff01b5005
domain: zha
platform: device
type: remote_button_short_press
subtype: turn_on
action:
- service: media_player.media_play_pause
target:
entity_id: media_player.bathroom
mode: single
- id: bathroom-mirror-lights-off
alias: '[Bathroom] Mirror Button Lights toggle'
trigger:
- device_id: 4d5298037e93ba11438409bff01b5005
domain: zha
platform: device
type: remote_button_short_press
subtype: turn_off
action:
- choose:
- conditions:
- condition: state
entity_id: light.bathroom_mirror_lights
state: 'on'
sequence:
- service: light.turn_off
entity_id: light.bathroom_mirror_lights
- conditions:
- condition: state
entity_id: light.bathroom_mirror_lights
state: 'off'
sequence:
- choose:
- conditions:
- condition: state
entity_id: input_boolean.sleep_mode
state: 'on'
sequence:
- service: light.turn_on
entity_id: light.bathroom_mirror_lights
data:
brightness_pct: 100
kelvin: 2000
- conditions:
- condition: state
entity_id: input_boolean.sleep_mode
state: 'off'
sequence:
- service: light.turn_on
entity_id: light.bathroom_mirror_lights
data:
brightness_pct: 100
kelvin: 3200
mode: single