mirror of
https://github.com/python-kasa/python-kasa.git
synced 2025-01-23 13:17:06 +00:00
2ab42f59b3
Fallback to `is_low` if `at_low_battery` is not available.
73 lines
2.3 KiB
Python
73 lines
2.3 KiB
Python
"""Implementation of battery module."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Annotated
|
|
|
|
from ...exceptions import KasaException
|
|
from ...feature import Feature
|
|
from ...module import FeatureAttribute
|
|
from ..smartmodule import SmartModule
|
|
|
|
|
|
class BatterySensor(SmartModule):
|
|
"""Implementation of battery module."""
|
|
|
|
REQUIRED_COMPONENT = "battery_detect"
|
|
QUERY_GETTER_NAME = "get_battery_detect_info"
|
|
|
|
def _initialize_features(self) -> None:
|
|
"""Initialize features."""
|
|
if (
|
|
"at_low_battery" in self._device.sys_info
|
|
or "is_low" in self._device.sys_info
|
|
):
|
|
self._add_feature(
|
|
Feature(
|
|
self._device,
|
|
"battery_low",
|
|
"Battery low",
|
|
container=self,
|
|
attribute_getter="battery_low",
|
|
icon="mdi:alert",
|
|
type=Feature.Type.BinarySensor,
|
|
category=Feature.Category.Debug,
|
|
)
|
|
)
|
|
|
|
# Some devices, like T110 contact sensor do not report the battery percentage
|
|
if "battery_percentage" in self._device.sys_info:
|
|
self._add_feature(
|
|
Feature(
|
|
self._device,
|
|
"battery_level",
|
|
"Battery level",
|
|
container=self,
|
|
attribute_getter="battery",
|
|
icon="mdi:battery",
|
|
unit_getter=lambda: "%",
|
|
category=Feature.Category.Info,
|
|
type=Feature.Type.Sensor,
|
|
)
|
|
)
|
|
|
|
def query(self) -> dict:
|
|
"""Query to execute during the update cycle."""
|
|
return {}
|
|
|
|
@property
|
|
def battery(self) -> Annotated[int, FeatureAttribute()]:
|
|
"""Return battery level."""
|
|
return self._device.sys_info["battery_percentage"]
|
|
|
|
@property
|
|
def battery_low(self) -> Annotated[bool, FeatureAttribute()]:
|
|
"""Return True if battery is low."""
|
|
is_low = self._device.sys_info.get(
|
|
"at_low_battery", self._device.sys_info.get("is_low")
|
|
)
|
|
if is_low is None:
|
|
raise KasaException("Device does not report battery low status")
|
|
|
|
return is_low
|