From f79c3ed719c60fa0e21c7097bf0bd85d5b978835 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Sun, 1 Apr 2018 19:30:21 +1000 Subject: [PATCH 1/2] Confusing as it uses a non-default TTS platform --- source/_cookbook/sonos_say.markdown | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/source/_cookbook/sonos_say.markdown b/source/_cookbook/sonos_say.markdown index cfc7a76b3f2..e17db1e4a78 100644 --- a/source/_cookbook/sonos_say.markdown +++ b/source/_cookbook/sonos_say.markdown @@ -54,3 +54,14 @@ automation: message: 'Your husband coming home!' delay: '00:00:05' ``` +Note that this example uses the `voicerss` text-to-speech platform. There are many platforms that can be used. The one installed by default with Home Assistant is Google TTS. This appears in your `configuration.yaml` file as: + +``` + tts: + - platform: google +``` + +If you want to use this TTS engine, change the line above to +``` +- service: tts.google_say +``` From 7a22ffe8a50c728bd80f3b20b3aca0d5f0d6a59c Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Sun, 1 Apr 2018 19:36:24 +1000 Subject: [PATCH 2/2] Update sonos_say.markdown --- source/_cookbook/sonos_say.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_cookbook/sonos_say.markdown b/source/_cookbook/sonos_say.markdown index e17db1e4a78..fd4b04b402f 100644 --- a/source/_cookbook/sonos_say.markdown +++ b/source/_cookbook/sonos_say.markdown @@ -61,7 +61,7 @@ Note that this example uses the `voicerss` text-to-speech platform. There are ma - platform: google ``` -If you want to use this TTS engine, change the line above to +If you want to use this TTS engine, change the line in the example provided to: ``` - service: tts.google_say ```