diff --git a/custom_components/fusion_solar/fusion_solar/power_entity.py b/custom_components/fusion_solar/fusion_solar/power_entity.py index 6a75d2d..5839433 100644 --- a/custom_components/fusion_solar/fusion_solar/power_entity.py +++ b/custom_components/fusion_solar/fusion_solar/power_entity.py @@ -72,6 +72,8 @@ def _handle_coordinator_update(self): else: self._state = float(self.coordinator.data[self._data_name][self._attribute]) + self.async_write_ha_state() + class FusionSolarPowerEntityRealtime(FusionSolarPowerEntity): pass diff --git a/custom_components/fusion_solar/manifest.json b/custom_components/fusion_solar/manifest.json index 32b4292..c4f0a11 100644 --- a/custom_components/fusion_solar/manifest.json +++ b/custom_components/fusion_solar/manifest.json @@ -1,7 +1,7 @@ { "domain": "fusion_solar", "name": "FusionSolar", - "version": "2.3.0", + "version": "2.3.1", "integration_type": "hub", "documentation": "https://github.com/tijsverkoyen/HomeAssistant-FusionSolar", "issue_tracker": "https://github.com/tijsverkoyen/HomeAssistant-FusionSolar/issues",