mirror of
https://github.com/home-assistant/core.git
synced 2025-12-20 02:48:57 +00:00
182 lines
6.2 KiB
Python
182 lines
6.2 KiB
Python
"""Support for OralB sensors."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from oralb_ble import OralBSensor, SensorUpdate
|
|
from oralb_ble.parser import (
|
|
IO_SERIES_MODES,
|
|
PRESSURE,
|
|
SECTOR_MAP,
|
|
SMART_SERIES_MODES,
|
|
STATES,
|
|
)
|
|
|
|
from homeassistant.components.bluetooth.passive_update_processor import (
|
|
PassiveBluetoothDataProcessor,
|
|
PassiveBluetoothDataUpdate,
|
|
PassiveBluetoothProcessorEntity,
|
|
)
|
|
from homeassistant.components.sensor import (
|
|
SensorDeviceClass,
|
|
SensorEntity,
|
|
SensorEntityDescription,
|
|
SensorStateClass,
|
|
)
|
|
from homeassistant.const import (
|
|
PERCENTAGE,
|
|
SIGNAL_STRENGTH_DECIBELS_MILLIWATT,
|
|
EntityCategory,
|
|
UnitOfTime,
|
|
)
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddConfigEntryEntitiesCallback
|
|
from homeassistant.helpers.sensor import sensor_device_info_to_hass_device_info
|
|
|
|
from . import OralBConfigEntry
|
|
from .device import device_key_to_bluetooth_entity_key
|
|
|
|
SENSOR_DESCRIPTIONS: dict[str, SensorEntityDescription] = {
|
|
OralBSensor.TIME: SensorEntityDescription(
|
|
key=OralBSensor.TIME,
|
|
device_class=SensorDeviceClass.DURATION,
|
|
state_class=SensorStateClass.TOTAL_INCREASING,
|
|
native_unit_of_measurement=UnitOfTime.SECONDS,
|
|
),
|
|
OralBSensor.SECTOR: SensorEntityDescription(
|
|
key=OralBSensor.SECTOR,
|
|
translation_key="sector",
|
|
entity_category=EntityCategory.DIAGNOSTIC,
|
|
options=[v.replace(" ", "_") for v in set(SECTOR_MAP.values()) | {"no_sector"}],
|
|
device_class=SensorDeviceClass.ENUM,
|
|
),
|
|
OralBSensor.NUMBER_OF_SECTORS: SensorEntityDescription(
|
|
key=OralBSensor.NUMBER_OF_SECTORS,
|
|
translation_key="number_of_sectors",
|
|
entity_category=EntityCategory.DIAGNOSTIC,
|
|
),
|
|
OralBSensor.SECTOR_TIMER: SensorEntityDescription(
|
|
key=OralBSensor.SECTOR_TIMER,
|
|
translation_key="sector_timer",
|
|
entity_category=EntityCategory.DIAGNOSTIC,
|
|
entity_registry_enabled_default=False,
|
|
),
|
|
OralBSensor.TOOTHBRUSH_STATE: SensorEntityDescription(
|
|
key=OralBSensor.TOOTHBRUSH_STATE,
|
|
translation_key="toothbrush_state",
|
|
options=[v.replace(" ", "_") for v in set(STATES.values())],
|
|
device_class=SensorDeviceClass.ENUM,
|
|
name=None,
|
|
),
|
|
OralBSensor.PRESSURE: SensorEntityDescription(
|
|
key=OralBSensor.PRESSURE,
|
|
translation_key="pressure",
|
|
options=[v.replace(" ", "_") for v in set(PRESSURE.values()) | {"low"}],
|
|
device_class=SensorDeviceClass.ENUM,
|
|
),
|
|
OralBSensor.MODE: SensorEntityDescription(
|
|
key=OralBSensor.MODE,
|
|
translation_key="mode",
|
|
entity_category=EntityCategory.DIAGNOSTIC,
|
|
options=[
|
|
v.replace(" ", "_")
|
|
for v in set(IO_SERIES_MODES.values()) | set(SMART_SERIES_MODES.values())
|
|
],
|
|
device_class=SensorDeviceClass.ENUM,
|
|
),
|
|
OralBSensor.SIGNAL_STRENGTH: SensorEntityDescription(
|
|
key=OralBSensor.SIGNAL_STRENGTH,
|
|
device_class=SensorDeviceClass.SIGNAL_STRENGTH,
|
|
native_unit_of_measurement=SIGNAL_STRENGTH_DECIBELS_MILLIWATT,
|
|
state_class=SensorStateClass.MEASUREMENT,
|
|
entity_category=EntityCategory.DIAGNOSTIC,
|
|
entity_registry_enabled_default=False,
|
|
),
|
|
OralBSensor.BATTERY_PERCENT: SensorEntityDescription(
|
|
key=OralBSensor.BATTERY_PERCENT,
|
|
device_class=SensorDeviceClass.BATTERY,
|
|
native_unit_of_measurement=PERCENTAGE,
|
|
state_class=SensorStateClass.MEASUREMENT,
|
|
entity_category=EntityCategory.DIAGNOSTIC,
|
|
),
|
|
}
|
|
|
|
|
|
def sensor_update_to_bluetooth_data_update(
|
|
sensor_update: SensorUpdate,
|
|
) -> PassiveBluetoothDataUpdate:
|
|
"""Convert a sensor update to a bluetooth data update."""
|
|
return PassiveBluetoothDataUpdate(
|
|
devices={
|
|
device_id: sensor_device_info_to_hass_device_info(device_info)
|
|
for device_id, device_info in sensor_update.devices.items()
|
|
},
|
|
entity_descriptions={
|
|
device_key_to_bluetooth_entity_key(device_key): SENSOR_DESCRIPTIONS[
|
|
device_key.key
|
|
]
|
|
for device_key in sensor_update.entity_descriptions
|
|
},
|
|
entity_data={
|
|
device_key_to_bluetooth_entity_key(device_key): sensor_values.native_value
|
|
for device_key, sensor_values in sensor_update.entity_values.items()
|
|
},
|
|
entity_names={},
|
|
)
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
entry: OralBConfigEntry,
|
|
async_add_entities: AddConfigEntryEntitiesCallback,
|
|
) -> None:
|
|
"""Set up the OralB BLE sensors."""
|
|
coordinator = entry.runtime_data
|
|
processor = PassiveBluetoothDataProcessor(sensor_update_to_bluetooth_data_update)
|
|
entry.async_on_unload(
|
|
processor.async_add_entities_listener(
|
|
OralBBluetoothSensorEntity, async_add_entities
|
|
)
|
|
)
|
|
entry.async_on_unload(
|
|
coordinator.async_register_processor(processor, SensorEntityDescription)
|
|
)
|
|
|
|
|
|
class OralBBluetoothSensorEntity(
|
|
PassiveBluetoothProcessorEntity[
|
|
PassiveBluetoothDataProcessor[str | int | None, SensorUpdate]
|
|
],
|
|
SensorEntity,
|
|
):
|
|
"""Representation of a OralB sensor."""
|
|
|
|
@property
|
|
def native_value(self) -> str | int | None:
|
|
"""Return the native value."""
|
|
value = self.processor.entity_data.get(self.entity_key)
|
|
if isinstance(value, str):
|
|
value = value.replace(" ", "_")
|
|
if (
|
|
self.entity_description.options is not None
|
|
and value not in self.entity_description.options
|
|
): # append unknown values to enum
|
|
self.entity_description.options.append(value)
|
|
return value
|
|
|
|
@property
|
|
def available(self) -> bool:
|
|
"""Return True if entity is available.
|
|
|
|
The sensor is only created when the device is seen.
|
|
|
|
Since these are sleepy devices which stop broadcasting
|
|
when not in use, we can't rely on the last update time
|
|
so once we have seen the device we always return True.
|
|
"""
|
|
return True
|
|
|
|
@property
|
|
def assumed_state(self) -> bool:
|
|
"""Return True if the device is no longer broadcasting."""
|
|
return not self.processor.available
|