104 lines
3.4 KiB
Python
104 lines
3.4 KiB
Python
"""Support for SwitchBot sensors."""
|
|
from __future__ import annotations
|
|
|
|
from homeassistant.components.sensor import (
|
|
SensorDeviceClass,
|
|
SensorEntity,
|
|
SensorEntityDescription,
|
|
SensorStateClass,
|
|
)
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import (
|
|
PERCENTAGE,
|
|
SIGNAL_STRENGTH_DECIBELS_MILLIWATT,
|
|
TEMP_CELSIUS,
|
|
)
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity import EntityCategory
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from .const import DOMAIN
|
|
from .coordinator import SwitchbotDataUpdateCoordinator
|
|
from .entity import SwitchbotEntity
|
|
|
|
PARALLEL_UPDATES = 1
|
|
|
|
SENSOR_TYPES: dict[str, SensorEntityDescription] = {
|
|
"rssi": SensorEntityDescription(
|
|
key="rssi",
|
|
native_unit_of_measurement=SIGNAL_STRENGTH_DECIBELS_MILLIWATT,
|
|
device_class=SensorDeviceClass.SIGNAL_STRENGTH,
|
|
entity_registry_enabled_default=False,
|
|
entity_category=EntityCategory.DIAGNOSTIC,
|
|
),
|
|
"wifi_rssi": SensorEntityDescription(
|
|
key="wifi_rssi",
|
|
native_unit_of_measurement=SIGNAL_STRENGTH_DECIBELS_MILLIWATT,
|
|
device_class=SensorDeviceClass.SIGNAL_STRENGTH,
|
|
entity_registry_enabled_default=False,
|
|
entity_category=EntityCategory.DIAGNOSTIC,
|
|
),
|
|
"battery": SensorEntityDescription(
|
|
key="battery",
|
|
native_unit_of_measurement=PERCENTAGE,
|
|
device_class=SensorDeviceClass.BATTERY,
|
|
state_class=SensorStateClass.MEASUREMENT,
|
|
entity_category=EntityCategory.DIAGNOSTIC,
|
|
),
|
|
"lightLevel": SensorEntityDescription(
|
|
key="lightLevel",
|
|
native_unit_of_measurement="Level",
|
|
state_class=SensorStateClass.MEASUREMENT,
|
|
device_class=SensorDeviceClass.ILLUMINANCE,
|
|
),
|
|
"humidity": SensorEntityDescription(
|
|
key="humidity",
|
|
native_unit_of_measurement=PERCENTAGE,
|
|
state_class=SensorStateClass.MEASUREMENT,
|
|
device_class=SensorDeviceClass.HUMIDITY,
|
|
),
|
|
"temperature": SensorEntityDescription(
|
|
key="temperature",
|
|
native_unit_of_measurement=TEMP_CELSIUS,
|
|
state_class=SensorStateClass.MEASUREMENT,
|
|
device_class=SensorDeviceClass.TEMPERATURE,
|
|
),
|
|
}
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant, entry: ConfigEntry, async_add_entities: AddEntitiesCallback
|
|
) -> None:
|
|
"""Set up Switchbot sensor based on a config entry."""
|
|
coordinator: SwitchbotDataUpdateCoordinator = hass.data[DOMAIN][entry.entry_id]
|
|
async_add_entities(
|
|
SwitchBotSensor(
|
|
coordinator,
|
|
sensor,
|
|
)
|
|
for sensor in coordinator.data["data"]
|
|
if sensor in SENSOR_TYPES
|
|
)
|
|
|
|
|
|
class SwitchBotSensor(SwitchbotEntity, SensorEntity):
|
|
"""Representation of a Switchbot sensor."""
|
|
|
|
def __init__(
|
|
self,
|
|
coordinator: SwitchbotDataUpdateCoordinator,
|
|
sensor: str,
|
|
) -> None:
|
|
"""Initialize the Switchbot sensor."""
|
|
super().__init__(coordinator)
|
|
self._sensor = sensor
|
|
self._attr_unique_id = f"{coordinator.base_unique_id}-{sensor}"
|
|
name = coordinator.device_name
|
|
self._attr_name = f"{name} {sensor.replace('_', ' ').title()}"
|
|
self.entity_description = SENSOR_TYPES[sensor]
|
|
|
|
@property
|
|
def native_value(self) -> str:
|
|
"""Return the state of the sensor."""
|
|
return self.data["data"][self._sensor]
|