Gonna give it another shot. #241
This commit is contained in:
parent
5cc50017c1
commit
78a044267d
|
@ -30,13 +30,18 @@
|
||||||
"Life is like a song, you’re back where you belong. Welcome home " ~ person,
|
"Life is like a song, you’re back where you belong. Welcome home " ~ person,
|
||||||
"Hey there " ~ person + " Welcome Home!",
|
"Hey there " ~ person + " Welcome Home!",
|
||||||
"Knock Knock. Who is There? " ~ person +" is!",
|
"Knock Knock. Who is There? " ~ person +" is!",
|
||||||
|
"The garage door opener just told me that " ~ person +" is home.",
|
||||||
|
person + " can not hide from the system. Welcome home.",
|
||||||
person ~ "! You are home!",
|
person ~ "! You are home!",
|
||||||
"I know a secret! " ~ person +" is home!",
|
"I know a secret! " ~ person +" is home!",
|
||||||
|
"Hey " ~ person +". Your arrival has been recorded by the Smartest house on the block.",
|
||||||
|
"Take note Molly! " ~ person +" is home.",
|
||||||
"I am sensing a disturbance in the force. " ~ person +" must be home!",
|
"I am sensing a disturbance in the force. " ~ person +" must be home!",
|
||||||
"And the house becomes a home. Welcome back " ~ person,
|
"And the house becomes a home. Welcome back " ~ person,
|
||||||
person + " is now here. Hash tag Welcome Home.",
|
person + " is now here. Hash tag Welcome Home.",
|
||||||
person + " is now here. Hash tag Home.",
|
person + " is now here. Hash tag Home.",
|
||||||
"Just a quick announcement. " ~ person +" hass arrived!",
|
person + " is now here. Hash tag Smart Home.",
|
||||||
|
"Just a quick announcement. " ~ person +" has arrived!",
|
||||||
"Pardon the interruption but " ~ person +" is home!",
|
"Pardon the interruption but " ~ person +" is home!",
|
||||||
"My systems are picking up the presence of additional humans. " ~ person +" has been identified as home."
|
"My systems are picking up the presence of additional humans. " ~ person +" has been identified as home."
|
||||||
] | random }}
|
] | random }}
|
||||||
|
|
|
@ -71,7 +71,7 @@ cloud:
|
||||||
display_categories: LIGHT
|
display_categories: LIGHT
|
||||||
http:
|
http:
|
||||||
base_url: !secret http_base_url
|
base_url: !secret http_base_url
|
||||||
server_port: !secret server_port
|
# server_port: !secret http_port
|
||||||
api_password: !secret http_api_password
|
api_password: !secret http_api_password
|
||||||
ssl_certificate: !secret ssl_certificate
|
ssl_certificate: !secret ssl_certificate
|
||||||
ssl_key: !secret ssl_key
|
ssl_key: !secret ssl_key
|
||||||
|
@ -223,9 +223,9 @@ climate:
|
||||||
platform: nest
|
platform: nest
|
||||||
|
|
||||||
# media_player:
|
# media_player:
|
||||||
# - platform: cast
|
# - platform: cast
|
||||||
# host: 192.168.10.209 #CCA1
|
# host: 192.168.10.209 #CCA1
|
||||||
# - platform: roku
|
# - platform: roku
|
||||||
|
|
||||||
# - platform: samsungtv
|
# - platform: samsungtv
|
||||||
# host: 192.168.10.207
|
# host: 192.168.10.207
|
||||||
|
|
|
@ -12,7 +12,7 @@ speech_processing:
|
||||||
- service: mqtt.publish
|
- service: mqtt.publish
|
||||||
data_template:
|
data_template:
|
||||||
topic: 'polly/lastmsg'
|
topic: 'polly/lastmsg'
|
||||||
payload: "This message is from {{ now().strftime('%-I') }}:{{ now().strftime('%M') }} {{ now().strftime('%p') }}. {{ speech_message | truncate(254)}}"
|
payload: "This message is from {{ now().strftime('%-I') }}:{{ now().strftime('%M') }} {{ now().strftime('%p') }}. {{ speech_message | truncate(220)}}"
|
||||||
retain: true
|
retain: true
|
||||||
|
|
||||||
- condition: and
|
- condition: and
|
||||||
|
@ -58,6 +58,17 @@ speech_processing:
|
||||||
0.3
|
0.3
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
- service: media_player.alexa_tts
|
||||||
|
data_template:
|
||||||
|
entity_id: >
|
||||||
|
{% if states.group.bed.state == 'off' %}
|
||||||
|
media_player.office
|
||||||
|
{% else %}
|
||||||
|
media_player.office
|
||||||
|
{% endif %}
|
||||||
|
message: >-
|
||||||
|
{{ speech_message }}
|
||||||
|
|
||||||
- service: tts.amazon_polly_say
|
- service: tts.amazon_polly_say
|
||||||
data_template:
|
data_template:
|
||||||
entity_id: >
|
entity_id: >
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 162 KiB After Width: | Height: | Size: 147 KiB |
Loading…
Reference in New Issue