1
0
ansible-home-assistant/automations/bathroom-music.yaml

47 lines
1.2 KiB
YAML
Raw Normal View History

2021-01-08 21:51:30 +00:00
- id: bathroom-music-on
alias: '[Bathroom] Music On'
mode: restart
trigger:
- platform: state
entity_id: binary_sensor.shower_motion
from: 'off'
to: 'on'
- device_id: 4d5298037e93ba11438409bff01b5005
domain: zha
platform: device
type: remote_button_short_press
subtype: turn_on
condition:
- condition: state
entity_id: media_player.bathroom_speaker
state: 'off'
2021-01-08 21:51:30 +00:00
action:
- service: spotcast.start
data:
device_name: Bathroom speaker
uri: 'spotify:playlist:71mXIu6HcdVj3fAMduaHop'
- id: bathroom-music-off
alias: '[Bathroom] Music Off'
mode: restart
trigger:
- platform: state
entity_id: binary_sensor.shower_motion
for: '0:01:00'
from: 'on'
to: 'off'
- platform: state
2021-05-06 23:03:19 +00:00
entity_id: binary_sensor.bathroom_motion_occupancy
2021-01-08 21:51:30 +00:00
for: '0:01:00'
from: 'on'
to: 'off'
condition:
- condition: state
entity_id: binary_sensor.shower_motion
state: 'off'
2021-01-08 21:51:30 +00:00
- condition: state
2021-05-06 23:03:19 +00:00
entity_id: binary_sensor.bathroom_motion_occupancy
state: 'off'
2021-01-08 21:51:30 +00:00
action:
- service: media_player.turn_off
entity_id: media_player.bathroom_speaker