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:
parent
b4a7980084
commit
5529bcc114
1 changed files with 3 additions and 3 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue