The below alert is set up to send a voice message to my Alexa device via my alexa notifier. However, I can’t figure out how to do the same thing with my Google Home device.
alert:
back_door_open_warning:
name: Back door open for 7 minutes
message: "Please don't forget to close the back door!"
done_message: "Thank you for closing the door"
entity_id: input_boolean.door_open_for_7_minutes
state: 'on'
repeat:
- 4
can_acknowledge: true
skip_first: true
notifiers:
- alexa_media
- tts.google_translate_say #<---This line doesn't work! Need an alternative pls.
I am able to send voice messages successfully to both Alexa and Google devices via the below automation. I just need to figure out a way to get my alert to do the same thing.
- alias: Back Door open warning
trigger:
- entity_id: binary_sensor.ecolink_door_window_sensor_sensor_2
from: 'off'
platform: state
to: 'on'
action:
- data:
entity_id: media_player.living_room_speaker
message: Please don't forget to close the back door!
service: tts.google_translate_say
- data:
target:
- media_player.mka_net_echo_dot
data:
type: announce
message: "Please don't forget to close the back door!"
service: notify.alexa_media