I have written my own ClimateDevice which also return in the property
@property
def available(self) -> bool:
"""Return True if entity is available."""
return self._available
whether the device is available or not.
As soon as the property delivers False
the frontend changes its look to the “unavailable” state:
But when the property delivers True
after some time, the frontend doesn’t get updated to its “available” look/state back.
It stays in this “unavailable” state until I perform a refresh of the web page!
Any suggestions what’s the problem here?!
Regards,
Daniel.