From 9916fe76128b3202655e6c72177c9e6c747a8ae1 Mon Sep 17 00:00:00 2001 From: lufton Date: Sat, 4 May 2019 00:52:40 +0300 Subject: [PATCH] Added speed, pitch and gain as supported options --- homeassistant/components/google_cloud/tts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/google_cloud/tts.py b/homeassistant/components/google_cloud/tts.py index 0557be9a3c8..84b5d6b2034 100644 --- a/homeassistant/components/google_cloud/tts.py +++ b/homeassistant/components/google_cloud/tts.py @@ -57,7 +57,7 @@ MAX_GAIN = 16.0 DEFAULT_GAIN = 0 SUPPORTED_OPTIONS = [ - CONF_VOICE, CONF_GENDER, CONF_ENCODING, + CONF_VOICE, CONF_GENDER, CONF_ENCODING, CONF_SPEED, CONF_PITCH, CONF_GAIN, ] PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({