diff --git a/source/_components/tts.markdown b/source/_components/tts.markdown index 1c28b44ff9d..4057a0cb4dd 100644 --- a/source/_components/tts.markdown +++ b/source/_components/tts.markdown @@ -50,13 +50,14 @@ tts: Say to all `media_player` device entities: ```yaml -service: tts.platform_say +# Replace google_say with _say when you use a different platform. +service: tts.google_say data: message: 'May the Force be with you.' ``` ```yaml -service: tts.platform_say +service: tts.google_say entity_id: media_player.floor data: message: 'May the Force be with you.' @@ -65,7 +66,7 @@ data: With a template: ```yaml -service: tts.platform_say +service: tts.google_say data_template: message: 'Temperature is {% raw %}{{ sensor.temperature }}{% endraw %}.' cache: false