diff --git a/homeassistant/components/smarttub/sensor.py b/homeassistant/components/smarttub/sensor.py index 07866d0b7a4e66..95a862502cdf9b 100644 --- a/homeassistant/components/smarttub/sensor.py +++ b/homeassistant/components/smarttub/sensor.py @@ -129,6 +129,7 @@ async def async_set_primary_filtration(self, **kwargs): 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 @@ async def async_set_secondary_filtration(self, **kwargs): kwargs[ATTR_MODE].upper() ] await self.cycle.set_mode(mode) + await self.coordinator.async_request_refresh()