I’m pretty sure group services can’t be grouped, but I wanted to ask just in case I’m missing the information.
Basically I would like to combine Google tts @ the Alexa tts services so I can run both during a automation.
Thanks all!
I’m pretty sure group services can’t be grouped, but I wanted to ask just in case I’m missing the information.
Basically I would like to combine Google tts @ the Alexa tts services so I can run both during a automation.
Thanks all!
make a script with both tts’s, pass the variables to the script and run the script in the automations.
Thanks @petro for this and pointing in the right direction yesterday about Lovelace! I appreciate you!
tts:
sequence:
- service: tts.google_say
data:
message: {{ message }}
#Not sure if the alexa tts service is correct but you get the idea.
- service: tts.alexa_say
data:
message: {{ message }}
Then use this as a service:
- service: script.tts
data:
message: "HELLO COREY"
No problem