1
0
ansible-home-assistant/automations/files/bathroom-music.yaml
Przemek Grondek dfc1f6e64c Fix some automations
setting alarm clock
 bathroom music restarting
 kitchen motion when it's bright in kitchen
2021-01-15 10:03:20 +01:00

43 lines
1.1 KiB
YAML

- id: bathroom-music-on
alias: '[Bathroom] Music On'
mode: restart
trigger:
- platform: state
entity_id: binary_sensor.shower_motion
from: 'off'
to: 'on'
condition:
- condition: state
entity_id: media_player.bathroom_speaker
state: 'off'
action:
- service: spotcast.start
data:
device_name: Bathroom speaker
uri: 'spotify:playlist:71mXIu6HcdVj3fAMduaHop'
random_song: true
- 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
entity_id: binary_sensor.bathroom_motion_sensor
for: '0:01:00'
from: 'on'
to: 'off'
condition:
- condition: state
entity_id: binary_sensor.shower_motion
state: 'off'
- condition: state
entity_id: binary_sensor.bathroom_motion_sensor
state: 'off'
action:
- service: media_player.turn_off
entity_id: media_player.bathroom_speaker