1
0
ansible-home-assistant/automations/files/alarm-clock.yaml

52 lines
1.3 KiB
YAML
Raw Normal View History

2020-11-03 23:55:41 +00:00
- id: wakeup
alias: Wakeup automation
description: ''
trigger:
- platform: time
at: input_datetime.alarm
condition:
- condition: time
weekday:
- mon
- tue
- wed
- thu
- fri
action:
- service: light.turn_on
data:
kelvin: 2000
brightness: 1
entity_id:
- light.bedroom_1
- light.bedroom_2
- service: light.turn_on
data:
kelvin: 5300
transition: 1800
brightness: 255
entity_id:
- light.bedroom_1
- light.bedroom_2
- delay: '10'
- service: media_player.volume_set
data:
volume_level: 0.1
entity_id: media_player.bedroom_speaker
- delay: 0:30:00
- service: media_player.volume_set
data:
volume_level: 0.6
entity_id: media_player.bedroom_speaker
- service: media_player.play_media
data:
media_content_id: media-source://media_source/local/wake-the-f-up-samurai-we-have-a-city-to-burn.mp3
media_content_type: music
entity_id: media_player.bedroom_speaker
2020-12-06 18:11:06 +00:00
- delay: '10'
- service: spotcast.start
data:
device_name: Bedroom speaker
uri: 'spotify:playlist:71mXIu6HcdVj3fAMduaHop'
random_song: true
2020-11-03 23:55:41 +00:00
mode: single