Home-AssistantConfig/config/automation/System/CucKoo_Clock.yaml

50 lines
1.4 KiB
YAML
Raw Normal View History

2018-01-02 00:00:45 +00:00
###################################
## cuckoo Clock simulation.
## Plays the number of cuckoos per hour and 1 on the half hour.
###################################
- alias: Cuckoo Clock
trigger:
- platform: time_pattern
hours: '*'
minutes: '0'
- platform: time_pattern
minutes: '30'
2018-01-02 00:00:45 +00:00
condition:
- condition: time
after: '09:29:00'
2018-01-02 00:00:45 +00:00
before: '21:30:00'
- condition: state
entity_id: group.family
state: 'home'
- condition: template
value_template: >
{% if is_state('media_player.livingroomCC', 'playing') %}
false
{% else %}
true
{% endif %}
action:
- service: script.amp_settings
2018-01-02 00:00:45 +00:00
data:
media_player: 'media_player.livingroomcc'
2018-01-02 00:00:45 +00:00
volume_level: 0.22
- service: media_player.play_media
data_template:
entity_id: >
{% if states.group.bed.state == 'off' %}
media_player.livingroomCC
{% else %}
2018-01-29 21:33:07 +00:00
media_player.alarm_clock, media_player.bedroom_alarm_panel
{% endif %}
2018-01-02 00:00:45 +00:00
media_content_id: >
{% if now().strftime("%M")|int == 30 %}
2018-03-01 01:00:44 +00:00
https://raw.githubusercontent.com/CCOSTAN/Home-AssistantConfig/master/config/sounds/cuckoo-clock-01.wav
2018-01-02 00:00:45 +00:00
{% else %}
2018-03-01 01:00:44 +00:00
https://raw.githubusercontent.com/CCOSTAN/Home-AssistantConfig/master/config/sounds/cuckoo-clock-{{now().strftime("%I")}}.wav
2018-01-02 00:00:45 +00:00
{% endif %}
media_content_type: audio/mp4