Fixed AlexaPowerController to report power state for thermostats (#23468)

Fixed AlexaPowerController to report power state for thermostats, to look if state is OFF return OFF, otherwise report ON as thermostats have multiple values for ON
This commit is contained in:
mcc05 2019-04-29 02:29:12 +01:00 committed by Charles Garwood
parent b4a7980084
commit 5529bcc114

View file

@ -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):