2024-11-30 16:11:46 +00:00
|
|
|
"""Implementation of vacuum consumables."""
|
|
|
|
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
import logging
|
2024-12-01 00:25:53 +00:00
|
|
|
from dataclasses import dataclass
|
|
|
|
from datetime import timedelta
|
2024-11-30 16:11:46 +00:00
|
|
|
|
|
|
|
from ...feature import Feature
|
|
|
|
from ..smartmodule import SmartModule
|
|
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2024-12-01 00:25:53 +00:00
|
|
|
@dataclass
|
|
|
|
class Consumable:
|
|
|
|
"""Consumable container."""
|
|
|
|
|
|
|
|
#: Name of the consumable.
|
|
|
|
name: str
|
|
|
|
#: Feature base name
|
|
|
|
feature_basename: str
|
|
|
|
#: Data key in the device reported data
|
|
|
|
data_key: str
|
|
|
|
#: Lifetime
|
|
|
|
lifetime: timedelta
|
|
|
|
|
|
|
|
|
|
|
|
CONSUMABLES = [
|
|
|
|
# TODO: there is also main_brush_roll, which one to use?
|
|
|
|
Consumable(
|
|
|
|
"Main brush",
|
|
|
|
feature_basename="main_brush",
|
|
|
|
data_key="main_brush_lid_time",
|
|
|
|
lifetime=timedelta(hours=400),
|
|
|
|
),
|
|
|
|
Consumable(
|
|
|
|
"Side brush",
|
|
|
|
feature_basename="side_brush",
|
|
|
|
data_key="edge_brush_time",
|
|
|
|
lifetime=timedelta(hours=200),
|
|
|
|
),
|
|
|
|
Consumable(
|
|
|
|
"Filter",
|
|
|
|
feature_basename="filter",
|
|
|
|
data_key="filter_time",
|
|
|
|
lifetime=timedelta(hours=200),
|
|
|
|
),
|
|
|
|
Consumable(
|
|
|
|
"Sensor",
|
|
|
|
feature_basename="sensor",
|
|
|
|
data_key="sensor_time",
|
|
|
|
lifetime=timedelta(hours=30),
|
|
|
|
),
|
|
|
|
Consumable(
|
|
|
|
"Charging contacts",
|
|
|
|
feature_basename="contacts",
|
|
|
|
data_key="charge_contact_time",
|
|
|
|
lifetime=timedelta(hours=30),
|
|
|
|
),
|
|
|
|
# unknown data, does not seem to be mop used
|
|
|
|
# Consumable("Rag", key="rag_time", lifetime=timedelta(hours=30))
|
|
|
|
]
|
|
|
|
|
|
|
|
|
2024-11-30 16:11:46 +00:00
|
|
|
class VacuumConsumables(SmartModule):
|
|
|
|
"""Implementation of vacuum consumables."""
|
|
|
|
|
|
|
|
REQUIRED_COMPONENT = "consumables"
|
|
|
|
QUERY_GETTER_NAME = "getConsumablesInfo"
|
|
|
|
|
|
|
|
def _initialize_features(self) -> None:
|
|
|
|
"""Initialize features."""
|
2024-12-01 00:25:53 +00:00
|
|
|
for consumable in CONSUMABLES:
|
|
|
|
if consumable.data_key not in self.data:
|
|
|
|
continue
|
2024-11-30 16:11:46 +00:00
|
|
|
|
2024-12-01 00:25:53 +00:00
|
|
|
self._add_feature(
|
|
|
|
Feature(
|
|
|
|
self._device,
|
|
|
|
id=f"vacuum_{consumable.feature_basename}_used",
|
|
|
|
name=f"{consumable.name} used",
|
|
|
|
container=self.data,
|
2024-12-01 00:45:14 +00:00
|
|
|
attribute_getter=lambda container, item=consumable: timedelta(
|
|
|
|
minutes=getattr(container, item.data_key)
|
2024-12-01 00:25:53 +00:00
|
|
|
),
|
|
|
|
category=Feature.Category.Debug,
|
|
|
|
type=Feature.Type.Sensor,
|
|
|
|
)
|
|
|
|
)
|
2024-11-30 16:11:46 +00:00
|
|
|
|
2024-12-01 00:25:53 +00:00
|
|
|
self._add_feature(
|
|
|
|
Feature(
|
|
|
|
self._device,
|
|
|
|
id=f"vacuum_{consumable.feature_basename}_remaining",
|
|
|
|
name=f"{consumable.name} remaining",
|
|
|
|
container=self.data,
|
2024-12-01 00:45:14 +00:00
|
|
|
attribute_getter=lambda container, item=consumable: item.lifetime
|
|
|
|
- timedelta(minutes=getattr(container, item.data_key)),
|
2024-12-01 00:25:53 +00:00
|
|
|
category=Feature.Category.Info,
|
|
|
|
type=Feature.Type.Sensor,
|
|
|
|
)
|
|
|
|
)
|