diff --git a/homeassistant/components/smarttub/sensor.py b/homeassistant/components/smarttub/sensor.py index 07866d0b7a4..95a862502cd 100644 --- a/homeassistant/components/smarttub/sensor.py +++ b/homeassistant/components/smarttub/sensor.py @@ -129,6 +129,7 @@ class SmartTubPrimaryFiltrationCycle(SmartTubSensor): duration=kwargs.get(ATTR_DURATION), start_hour=kwargs.get(ATTR_START_HOUR), ) + await self.coordinator.async_request_refresh() class SmartTubSecondaryFiltrationCycle(SmartTubSensor): @@ -164,3 +165,4 @@ class SmartTubSecondaryFiltrationCycle(SmartTubSensor): kwargs[ATTR_MODE].upper() ] await self.cycle.set_mode(mode) + await self.coordinator.async_request_refresh()