mirror of https://github.com/home-assistant/core
156 lines
5.5 KiB
Python
156 lines
5.5 KiB
Python
"""Support for Leaone sensors."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from leaone_ble import DeviceClass as LeaoneSensorDeviceClass, SensorUpdate, Units
|
|
|
|
from homeassistant import config_entries
|
|
from homeassistant.components.bluetooth.passive_update_processor import (
|
|
PassiveBluetoothDataProcessor,
|
|
PassiveBluetoothDataUpdate,
|
|
PassiveBluetoothProcessorCoordinator,
|
|
PassiveBluetoothProcessorEntity,
|
|
)
|
|
from homeassistant.components.sensor import (
|
|
SensorDeviceClass,
|
|
SensorEntity,
|
|
SensorEntityDescription,
|
|
SensorStateClass,
|
|
)
|
|
from homeassistant.const import (
|
|
SIGNAL_STRENGTH_DECIBELS_MILLIWATT,
|
|
EntityCategory,
|
|
UnitOfMass,
|
|
)
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
from homeassistant.helpers.sensor import sensor_device_info_to_hass_device_info
|
|
|
|
from .const import DOMAIN
|
|
from .device import device_key_to_bluetooth_entity_key
|
|
|
|
SENSOR_DESCRIPTIONS = {
|
|
(
|
|
LeaoneSensorDeviceClass.MASS_NON_STABILIZED,
|
|
Units.MASS_KILOGRAMS,
|
|
): SensorEntityDescription(
|
|
key=f"{LeaoneSensorDeviceClass.MASS_NON_STABILIZED}_{Units.MASS_KILOGRAMS}",
|
|
device_class=SensorDeviceClass.WEIGHT,
|
|
native_unit_of_measurement=UnitOfMass.KILOGRAMS,
|
|
state_class=SensorStateClass.MEASUREMENT,
|
|
entity_category=EntityCategory.DIAGNOSTIC,
|
|
),
|
|
(LeaoneSensorDeviceClass.MASS, Units.MASS_KILOGRAMS): SensorEntityDescription(
|
|
key=f"{LeaoneSensorDeviceClass.MASS}_{Units.MASS_KILOGRAMS}",
|
|
device_class=SensorDeviceClass.WEIGHT,
|
|
native_unit_of_measurement=UnitOfMass.KILOGRAMS,
|
|
state_class=SensorStateClass.MEASUREMENT,
|
|
),
|
|
(LeaoneSensorDeviceClass.IMPEDANCE, Units.OHM): SensorEntityDescription(
|
|
key=f"{LeaoneSensorDeviceClass.IMPEDANCE}_{Units.OHM}",
|
|
icon="mdi:omega",
|
|
native_unit_of_measurement=Units.OHM,
|
|
state_class=SensorStateClass.MEASUREMENT,
|
|
entity_category=EntityCategory.DIAGNOSTIC,
|
|
entity_registry_enabled_default=False,
|
|
),
|
|
(
|
|
LeaoneSensorDeviceClass.SIGNAL_STRENGTH,
|
|
Units.SIGNAL_STRENGTH_DECIBELS_MILLIWATT,
|
|
): SensorEntityDescription(
|
|
key=f"{LeaoneSensorDeviceClass.SIGNAL_STRENGTH}_{Units.SIGNAL_STRENGTH_DECIBELS_MILLIWATT}",
|
|
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,
|
|
),
|
|
(
|
|
LeaoneSensorDeviceClass.PACKET_ID,
|
|
None,
|
|
): SensorEntityDescription(
|
|
key=str(LeaoneSensorDeviceClass.PACKET_ID),
|
|
entity_category=EntityCategory.DIAGNOSTIC,
|
|
state_class=SensorStateClass.MEASUREMENT,
|
|
entity_registry_enabled_default=False,
|
|
),
|
|
}
|
|
|
|
|
|
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[
|
|
(description.device_class, description.native_unit_of_measurement)
|
|
]
|
|
for device_key, description in sensor_update.entity_descriptions.items()
|
|
if description.device_class and description.native_unit_of_measurement
|
|
},
|
|
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={
|
|
device_key_to_bluetooth_entity_key(device_key): sensor_values.name
|
|
for device_key, sensor_values in sensor_update.entity_values.items()
|
|
},
|
|
)
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
entry: config_entries.ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up the Leaone BLE sensors."""
|
|
coordinator: PassiveBluetoothProcessorCoordinator = hass.data[DOMAIN][
|
|
entry.entry_id
|
|
]
|
|
processor = PassiveBluetoothDataProcessor(sensor_update_to_bluetooth_data_update)
|
|
entry.async_on_unload(
|
|
processor.async_add_entities_listener(
|
|
LeaoneBluetoothSensorEntity, async_add_entities
|
|
)
|
|
)
|
|
entry.async_on_unload(
|
|
coordinator.async_register_processor(processor, SensorEntityDescription)
|
|
)
|
|
|
|
|
|
class LeaoneBluetoothSensorEntity(
|
|
PassiveBluetoothProcessorEntity[
|
|
PassiveBluetoothDataProcessor[float | int | None, SensorUpdate]
|
|
],
|
|
SensorEntity,
|
|
):
|
|
"""Representation of a Leaone sensor."""
|
|
|
|
@property
|
|
def native_value(self) -> int | float | None:
|
|
"""Return the native value."""
|
|
return self.processor.entity_data.get(self.entity_key)
|
|
|
|
@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
|