#TTS with Alexa in NodeRed

1 messages · Page 1 of 1 (latest)

steep shell
#

can someone send me an example of how i can send a tts to alexa under node-red? what i find is outdated and doesn't work.

It works in the developer environment:
#tts
service: notify.alexa_media
data:
message: “Hello! This is a test.”
target: media_player.eg_wohnzimmer_echo_studio
data:
type: tts

visual timber
#

TTS with Alexa in NodeRed

sweet mason
#

I'm no expert, but I do this with an HA action node in NodeRed. In my case I've set the following

Action node:
Action: notify.alex_media_study
Data (JSON): { "message": "{{payload}}", "data": { "type": "announce" }, "target": "{{service}}" }

Easy to test by connecting an Inject Node with msg.payload = text of message to send

steep shell
#

YES!!! THANKS!