diff --git a/homeassistant/components/alexa/smart_home.py b/homeassistant/components/alexa/smart_home.py index e16a1d45ab7..21a65b1ede1 100644 --- a/homeassistant/components/alexa/smart_home.py +++ b/homeassistant/components/alexa/smart_home.py @@ -449,9 +449,9 @@ class _AlexaPowerController(_AlexaInterface): if name != 'powerState': raise _UnsupportedProperty(name) - if self.entity.state == STATE_ON: - return 'ON' - return 'OFF' + if self.entity.state == STATE_OFF: + return 'OFF' + return 'ON' class _AlexaLockController(_AlexaInterface):