mirror of
https://github.com/CCOSTAN/Home-AssistantConfig.git
synced 2025-12-03 11:31:42 +00:00
54 lines
1.9 KiB
YAML
Executable File
54 lines
1.9 KiB
YAML
Executable File
#####################################################################
|
|
# @CCOSTAN
|
|
# Original Repo : https://github.com/CCOSTAN/Home-AssistantConfig
|
|
## Plays the number of cuckoos per hour and 1 on the half hour.
|
|
# More Info and Video: https://www.vcloudinfo.com/2017/11/building-digital-cuckoo-clock-with-home.html
|
|
#####################################################################
|
|
|
|
- alias: Cuckoo Clock
|
|
id: 33dcd8e2-e87c-4d18-82bc-c7f9b53a1624
|
|
mode: restart
|
|
trigger:
|
|
- platform: time_pattern
|
|
minutes: 0
|
|
- platform: time_pattern
|
|
minutes: 30
|
|
|
|
condition:
|
|
- condition: time
|
|
after: '09:00:00'
|
|
before: '22:00:00'
|
|
- condition: or #Either we are home or Guest_Mode is on.
|
|
conditions:
|
|
- condition: state
|
|
entity_id: group.family
|
|
state: 'home'
|
|
- condition: state
|
|
entity_id: input_boolean.guest_mode
|
|
state: 'on'
|
|
|
|
action:
|
|
- service: script.amp_settings
|
|
data:
|
|
media_player: 'media_player.livingroomcc'
|
|
volume_level: 0.22
|
|
|
|
- wait_template: "{{ not is_state('media_player.livingroomCC', 'playing') }}"
|
|
|
|
- service: media_player.play_media
|
|
data:
|
|
entity_id: media_player.livingroomCC
|
|
media_content_id: >
|
|
{% set month = now().strftime("%B") %}
|
|
{% set base = "https://raw.githubusercontent.com/CCOSTAN/Home-AssistantConfig/master/config/sounds/" %}
|
|
{% if month == 'October' %}
|
|
{% set folder = 'october-clock' %}
|
|
{% elif month == 'December' %}
|
|
{% set folder = 'december-clock' %}
|
|
{% else %}
|
|
{% set folder = 'cuckoo-clock' %}
|
|
{% endif %}
|
|
{% set file = 'cuckoo-clock-01.wav' if now().strftime("%M")|int == 30 else 'cuckoo-clock-' ~ now().strftime("%I") ~ '.wav' %}
|
|
{{ base ~ folder ~ '/' ~ file }}
|
|
media_content_type: audio/mp4
|