lOOKS LIKE WE JUST NEEDED MEDIA_SOURCES LOADED. Added delay for neato when we first get home or wake up.
This commit is contained in:
parent
dd93c57914
commit
77584e8de5
|
@ -76,6 +76,7 @@ automation:
|
|||
action:
|
||||
- wait_template: "{{ states.group.family.state == 'home' }}"
|
||||
- wait_template: "{{ is_state('group.bed', 'off') }}"
|
||||
- delay: 00:05:00
|
||||
|
||||
- service: script.speech_engine
|
||||
data:
|
||||
|
|
|
@ -29,7 +29,16 @@ speech_engine:
|
|||
|
||||
- service: script.speech_processing
|
||||
data:
|
||||
media_player: media_player.livingroomcc
|
||||
media_player: >-
|
||||
{% if media_player | length == 0 %}
|
||||
{% set media_player = [
|
||||
'media_player.livingroomcc'
|
||||
] %}
|
||||
{% endif %}
|
||||
{% if media_player is not string and media_player is sequence %}
|
||||
{% set media_player = media_player|join(', ') %}
|
||||
{% endif %}
|
||||
{{ media_player }}
|
||||
speech_message: !include ../templates/speech/briefing.yaml
|
||||
|
||||
- service: input_boolean.turn_off
|
||||
|
|
|
@ -49,9 +49,8 @@ speech_processing:
|
|||
|
||||
- service: media_player.volume_set
|
||||
data:
|
||||
# entity_id: >
|
||||
# {{ media_player }}
|
||||
entity_id: media_player.livingroomCC
|
||||
entity_id: >
|
||||
{{ media_player }}
|
||||
volume_level: >-
|
||||
{% if now().strftime('%H')|int < 12 and now().strftime('%H')|int > 6 %}
|
||||
0.3
|
||||
|
|
Loading…
Reference in New Issue