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
pull/23529/head
mcc05 2019-04-29 02:29:12 +01:00 committed by Charles Garwood
parent b4a7980084
commit 5529bcc114
1 changed files with 3 additions and 3 deletions

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