mill stats

Signed-off-by: Daniel Hjelseth Høyer <github@dahoiv.net>
This commit is contained in:
Daniel Hjelseth Høyer 2025-01-14 06:37:56 +01:00
parent d4173793c4
commit 23c00f8099
2 changed files with 0 additions and 4 deletions

View File

@ -128,9 +128,6 @@ class MillHeater(CoordinatorEntity[MillDataUpdateCoordinator], ClimateEntity):
await self.coordinator.mill_data_connection.set_heater_temp( await self.coordinator.mill_data_connection.set_heater_temp(
self._id, float(temperature) self._id, float(temperature)
) )
await self.coordinator.mill_data_connection.fetch_historic_energy_usage(
self._id
)
await self.coordinator.async_request_refresh() await self.coordinator.async_request_refresh()
async def async_set_hvac_mode(self, hvac_mode: HVACMode) -> None: async def async_set_hvac_mode(self, hvac_mode: HVACMode) -> None:

View File

@ -2,7 +2,6 @@
ATTR_AWAY_TEMP = "away_temp" ATTR_AWAY_TEMP = "away_temp"
ATTR_COMFORT_TEMP = "comfort_temp" ATTR_COMFORT_TEMP = "comfort_temp"
ATTR_MAX_HEATING_POWER = "max_heating_power"
ATTR_ROOM_NAME = "room_name" ATTR_ROOM_NAME = "room_name"
ATTR_SLEEP_TEMP = "sleep_temp" ATTR_SLEEP_TEMP = "sleep_temp"
BATTERY = "battery" BATTERY = "battery"