mirror of
https://github.com/home-assistant/core.git
synced 2025-04-24 17:27:52 +00:00

* Initial commit * Support changed API Change sensor entity descriptions * Fix sensor not handling coordinator update * Implement re-authentication flow and handle token expiry * Bump aioaquacell * Bump aioaquacell * Cleanup and initial tests * Fixes for config flow tests * Cleanup * Fixes * Formatted * Use config entry runtime Use icon translations Removed reauth Removed last updated sensor Changed lid in place to binary sensor Cleanup * Remove reauth strings * Removed binary_sensor platform Fixed sensors not updating properly * Remove reauth tests Bump aioaquacell * Moved softener property to entity class Inlined validate_input method Renaming of entities Do a single async_add_entities call to add all entities Reduced code in try blocks * Made tests parameterized and use test fixture for api Cleaned up unused code Removed traces of reauth * Add check if refresh token is expired Add tests * Add missing unique_id to config entry mock Inlined _update_config_entry_refresh_token method Fix incorrect test method name and comment * Add snapshot test Changed WiFi level to WiFi strength * Bump aioaquacell to 0.1.7 * Move test_coordinator tests to test_init Add test for duplicate config entry
118 lines
3.6 KiB
Python
118 lines
3.6 KiB
Python
"""Sensors exposing properties of the softener device."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from collections.abc import Callable
|
|
from dataclasses import dataclass
|
|
|
|
from aioaquacell import Softener
|
|
|
|
from homeassistant.components.sensor import (
|
|
SensorDeviceClass,
|
|
SensorEntity,
|
|
SensorEntityDescription,
|
|
SensorStateClass,
|
|
)
|
|
from homeassistant.const import PERCENTAGE, UnitOfTime
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
from homeassistant.helpers.typing import StateType
|
|
|
|
from . import AquacellConfigEntry
|
|
from .coordinator import AquacellCoordinator
|
|
from .entity import AquacellEntity
|
|
|
|
PARALLEL_UPDATES = 1
|
|
|
|
|
|
@dataclass(frozen=True, kw_only=True)
|
|
class SoftenerSensorEntityDescription(SensorEntityDescription):
|
|
"""Describes Softener sensor entity."""
|
|
|
|
value_fn: Callable[[Softener], StateType]
|
|
|
|
|
|
SENSORS: tuple[SoftenerSensorEntityDescription, ...] = (
|
|
SoftenerSensorEntityDescription(
|
|
key="salt_left_side_percentage",
|
|
translation_key="salt_left_side_percentage",
|
|
state_class=SensorStateClass.MEASUREMENT,
|
|
native_unit_of_measurement=PERCENTAGE,
|
|
value_fn=lambda softener: softener.salt.leftPercent,
|
|
),
|
|
SoftenerSensorEntityDescription(
|
|
key="salt_right_side_percentage",
|
|
translation_key="salt_right_side_percentage",
|
|
state_class=SensorStateClass.MEASUREMENT,
|
|
native_unit_of_measurement=PERCENTAGE,
|
|
value_fn=lambda softener: softener.salt.rightPercent,
|
|
),
|
|
SoftenerSensorEntityDescription(
|
|
key="salt_left_side_time_remaining",
|
|
translation_key="salt_left_side_time_remaining",
|
|
device_class=SensorDeviceClass.DURATION,
|
|
native_unit_of_measurement=UnitOfTime.DAYS,
|
|
value_fn=lambda softener: softener.salt.leftDays,
|
|
),
|
|
SoftenerSensorEntityDescription(
|
|
key="salt_right_side_time_remaining",
|
|
translation_key="salt_right_side_time_remaining",
|
|
device_class=SensorDeviceClass.DURATION,
|
|
native_unit_of_measurement=UnitOfTime.DAYS,
|
|
value_fn=lambda softener: softener.salt.rightDays,
|
|
),
|
|
SoftenerSensorEntityDescription(
|
|
key="battery",
|
|
device_class=SensorDeviceClass.BATTERY,
|
|
native_unit_of_measurement=PERCENTAGE,
|
|
value_fn=lambda softener: softener.battery,
|
|
),
|
|
SoftenerSensorEntityDescription(
|
|
key="wi_fi_strength",
|
|
translation_key="wi_fi_strength",
|
|
value_fn=lambda softener: softener.wifiLevel,
|
|
device_class=SensorDeviceClass.ENUM,
|
|
options=[
|
|
"high",
|
|
"medium",
|
|
"low",
|
|
],
|
|
),
|
|
)
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: AquacellConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up the sensors."""
|
|
softeners = config_entry.runtime_data.data
|
|
async_add_entities(
|
|
SoftenerSensor(config_entry.runtime_data, sensor, softener_key)
|
|
for sensor in SENSORS
|
|
for softener_key in softeners
|
|
)
|
|
|
|
|
|
class SoftenerSensor(AquacellEntity, SensorEntity):
|
|
"""Softener sensor."""
|
|
|
|
entity_description: SoftenerSensorEntityDescription
|
|
|
|
def __init__(
|
|
self,
|
|
coordinator: AquacellCoordinator,
|
|
description: SoftenerSensorEntityDescription,
|
|
softener_key: str,
|
|
) -> None:
|
|
"""Pass coordinator to CoordinatorEntity."""
|
|
super().__init__(coordinator, softener_key, description.key)
|
|
|
|
self.entity_description = description
|
|
|
|
@property
|
|
def native_value(self) -> StateType:
|
|
"""Return the state of the sensor."""
|
|
return self.entity_description.value_fn(self.softener)
|