From 852d67b95c9d25d1035b59bc4ce10983b56d7899 Mon Sep 17 00:00:00 2001 From: Martin Gross Date: Sun, 10 Feb 2019 16:02:53 +0100 Subject: [PATCH] Fix #19990: Alexa-support for climate in manual-mode (#20910) --- homeassistant/components/alexa/smart_home.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/alexa/smart_home.py b/homeassistant/components/alexa/smart_home.py index 156dfa84a8a..acb23fe4278 100644 --- a/homeassistant/components/alexa/smart_home.py +++ b/homeassistant/components/alexa/smart_home.py @@ -63,6 +63,7 @@ API_THERMOSTAT_MODES = OrderedDict([ (climate.STATE_COOL, 'COOL'), (climate.STATE_AUTO, 'AUTO'), (climate.STATE_ECO, 'ECO'), + (climate.STATE_MANUAL, 'AUTO'), (climate.STATE_OFF, 'OFF'), (climate.STATE_IDLE, 'OFF'), (climate.STATE_FAN_ONLY, 'OFF'),