Some checks failed
Savin's Home Assistant / build (push) Failing after 1m45s
77 lines
2.8 KiB
YAML
77 lines
2.8 KiB
YAML
---
|
|
- id: app_va_night_mode_on
|
|
alias: '[App] Voice Assistants Night Mode On'
|
|
initial_state: 'true'
|
|
trigger:
|
|
- platform: time
|
|
at: input_datetime.app_va_night_mode_time_start
|
|
condition:
|
|
- and:
|
|
- condition: state
|
|
entity_id: input_boolean.app_va_night_mode_status
|
|
state: 'on'
|
|
- condition: time
|
|
after: input_datetime.app_va_night_mode_time_start
|
|
before: input_datetime.app_va_night_mode_time_end
|
|
action:
|
|
- service: switch.turn_off
|
|
entity_id:
|
|
- switch.onju_voice_01_wake_word_listening_light
|
|
- switch.onju_voice_02_wake_word_listening_light
|
|
- switch.onju_voice_03_wake_word_listening_light
|
|
- switch.onju_voice_04_wake_word_listening_light
|
|
- switch.onju_voice_05_wake_word_listening_light
|
|
- service: media_player.volume_set
|
|
data_template:
|
|
entity_id:
|
|
- media_player.onju_voice_01_onju_voice_01
|
|
- media_player.onju_voice_02_onju_voice_02
|
|
- media_player.onju_voice_03_onju_voice_03
|
|
- media_player.onju_voice_04_onju_voice_04
|
|
- media_player.onju_voice_05_onju_voice_05
|
|
volume_level: 0.25
|
|
- service: telegram_bot.send_message
|
|
data:
|
|
target: "-1002338954143"
|
|
message_thread_id: 4
|
|
message_tag: night_mode_finished
|
|
title: "[Home Assistant] Night Mode"
|
|
message: 'Voice Assistant Night mode is started'
|
|
# - service: notify.telegram_alex
|
|
# data_template:
|
|
# message: 'Voice Assistant Night mode is started'
|
|
|
|
- id: app_va_night_mode_off
|
|
alias: '[App] Voice Assistants Night Mode OFF'
|
|
initial_state: 'true'
|
|
trigger:
|
|
- platform: time
|
|
at: input_datetime.app_va_night_mode_time_end
|
|
action:
|
|
- service: switch.turn_on
|
|
entity_id:
|
|
- switch.onju_voice_01_wake_word_listening_light
|
|
- switch.onju_voice_02_wake_word_listening_light
|
|
- switch.onju_voice_03_wake_word_listening_light
|
|
- switch.onju_voice_04_wake_word_listening_light
|
|
- switch.onju_voice_05_wake_word_listening_light
|
|
- service: media_player.volume_set
|
|
data_template:
|
|
entity_id:
|
|
- media_player.onju_voice_01_onju_voice_01
|
|
- media_player.onju_voice_02_onju_voice_02
|
|
- media_player.onju_voice_03_onju_voice_03
|
|
- media_player.onju_voice_04_onju_voice_04
|
|
- media_player.onju_voice_05_onju_voice_05
|
|
volume_level: 1
|
|
- service: telegram_bot.send_message
|
|
data:
|
|
target: "-1002338954143"
|
|
message_thread_id: 4
|
|
message_tag: night_mode_finished
|
|
title: "[Home Assistant] Night Mode"
|
|
message: 'Voice Assistant Night mode is finished'
|
|
# - service: notify.telegram_alex
|
|
# data_template:
|
|
# message: 'Voice Assistant Night mode is finished'
|