From 2adf5918f574dbe75eb94822d929092d9176babb Mon Sep 17 00:00:00 2001 From: Ryan Wagoner Date: Sat, 27 Oct 2018 05:57:04 -0400 Subject: [PATCH] Fix Alexa unsupported operation_mode off (#17844) --- 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 e83a409d3bf..d3c18131cfc 100644 --- a/homeassistant/components/alexa/smart_home.py +++ b/homeassistant/components/alexa/smart_home.py @@ -42,6 +42,7 @@ API_THERMOSTAT_MODES = { climate.STATE_COOL: 'COOL', climate.STATE_AUTO: 'AUTO', climate.STATE_ECO: 'ECO', + climate.STATE_OFF: 'OFF', climate.STATE_IDLE: 'OFF', climate.STATE_FAN_ONLY: 'OFF', climate.STATE_DRY: 'OFF',