mirror of https://github.com/Andre0512/hon.git
Check remote control only if available, fix #50
This commit is contained in:
parent
617ea0f99a
commit
fae4c4c879
|
@ -69,7 +69,7 @@ class HonButtonEntity(HonEntity, ButtonEntity):
|
||||||
"""Return True if entity is available."""
|
"""Return True if entity is available."""
|
||||||
return (
|
return (
|
||||||
super().available
|
super().available
|
||||||
and self._device.get("remoteCtrValid") == "1"
|
and self._device.get("remoteCtrValid", "1") == "1"
|
||||||
and self._device.get("attributes.lastConnEvent.category") != "DISCONNECTED"
|
and self._device.get("attributes.lastConnEvent.category") != "DISCONNECTED"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -243,7 +243,7 @@ class HonNumberEntity(HonEntity, NumberEntity):
|
||||||
else:
|
else:
|
||||||
return (
|
return (
|
||||||
super().available
|
super().available
|
||||||
and self._device.get("remoteCtrValid") == "1"
|
and self._device.get("remoteCtrValid", "1") == "1"
|
||||||
and self._device.get("attributes.lastConnEvent.category")
|
and self._device.get("attributes.lastConnEvent.category")
|
||||||
!= "DISCONNECTED"
|
!= "DISCONNECTED"
|
||||||
)
|
)
|
||||||
|
|
|
@ -207,7 +207,7 @@ class HonSelectEntity(HonEntity, SelectEntity):
|
||||||
else:
|
else:
|
||||||
return (
|
return (
|
||||||
super().available
|
super().available
|
||||||
and self._device.get("remoteCtrValid") == "1"
|
and self._device.get("remoteCtrValid", "1") == "1"
|
||||||
and self._device.get("attributes.lastConnEvent.category")
|
and self._device.get("attributes.lastConnEvent.category")
|
||||||
!= "DISCONNECTED"
|
!= "DISCONNECTED"
|
||||||
)
|
)
|
||||||
|
|
|
@ -434,7 +434,7 @@ class HonSwitchEntity(HonEntity, SwitchEntity):
|
||||||
else:
|
else:
|
||||||
return (
|
return (
|
||||||
super().available
|
super().available
|
||||||
and self._device.get("remoteCtrValid") == "1"
|
and self._device.get("remoteCtrValid", "1") == "1"
|
||||||
and self._device.get("attributes.lastConnEvent.category")
|
and self._device.get("attributes.lastConnEvent.category")
|
||||||
!= "DISCONNECTED"
|
!= "DISCONNECTED"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue