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 ONpull/23529/head
parent
b4a7980084
commit
5529bcc114
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue