mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 03:07:37 +00:00
Fix switch state for Comelit (#142978)
This commit is contained in:
parent
2d149dc746
commit
7c867852a9
@ -81,4 +81,7 @@ class ComelitSwitchEntity(CoordinatorEntity[ComelitSerialBridge], SwitchEntity):
|
|||||||
@property
|
@property
|
||||||
def is_on(self) -> bool:
|
def is_on(self) -> bool:
|
||||||
"""Return True if switch is on."""
|
"""Return True if switch is on."""
|
||||||
return self.coordinator.data[OTHER][self._device.index].status == STATE_ON
|
return (
|
||||||
|
self.coordinator.data[self._device.type][self._device.index].status
|
||||||
|
== STATE_ON
|
||||||
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user