From 5efe180893ae24f9c261a4330c448864c4002469 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Sun, 18 Dec 2016 10:21:05 -0800 Subject: [PATCH] Update tts.markdown --- source/_components/tts.markdown | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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