* Move temperature conversions to entity base class (1/8) * Update integrations a-c * Leave old temperature conversion until all integrations are migrated * tweak * Use contextlib.suppress * Remove the MeasurableUnitEntity mixin * Address comments, add tests * Fix f-string * Drop deprecation warning from base entity class * Update with _attr-shorthand * Fix rebase mistakes * Fix additional rebase mistakes * Only report temperature conversion once * Fix additional rebase mistakes * Format homeassistant/components/bbox/sensor.py * Fix check for overidden _attr_state * Remove test workarounds from implementation * Remove useless None-check * Tweaks * Migrate new sensors a-c * Update climacell * Push deprecation of temperature conversion forward * Override __repr__ in SensorEntity * Include native_value in SensorEntity attributes * Pylint * Black * Black * Fix rebase mistakes * black * Fix rebase mistakes * Revert changes in august/sensor.py * Revert handling of unit converted restored state * Apply code review suggestion * Fix arlo test
47 lines
1.4 KiB
Python
47 lines
1.4 KiB
Python
"""Support for Acmeda Roller Blind Batteries."""
|
|
from homeassistant.components.sensor import SensorEntity
|
|
from homeassistant.const import DEVICE_CLASS_BATTERY, PERCENTAGE
|
|
from homeassistant.core import callback
|
|
from homeassistant.helpers.dispatcher import async_dispatcher_connect
|
|
|
|
from .base import AcmedaBase
|
|
from .const import ACMEDA_HUB_UPDATE, DOMAIN
|
|
from .helpers import async_add_acmeda_entities
|
|
|
|
|
|
async def async_setup_entry(hass, config_entry, async_add_entities):
|
|
"""Set up the Acmeda Rollers from a config entry."""
|
|
hub = hass.data[DOMAIN][config_entry.entry_id]
|
|
|
|
current = set()
|
|
|
|
@callback
|
|
def async_add_acmeda_sensors():
|
|
async_add_acmeda_entities(
|
|
hass, AcmedaBattery, config_entry, current, async_add_entities
|
|
)
|
|
|
|
hub.cleanup_callbacks.append(
|
|
async_dispatcher_connect(
|
|
hass,
|
|
ACMEDA_HUB_UPDATE.format(config_entry.entry_id),
|
|
async_add_acmeda_sensors,
|
|
)
|
|
)
|
|
|
|
|
|
class AcmedaBattery(AcmedaBase, SensorEntity):
|
|
"""Representation of a Acmeda cover device."""
|
|
|
|
device_class = DEVICE_CLASS_BATTERY
|
|
unit_of_measurement = PERCENTAGE
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return the name of roller."""
|
|
return f"{super().name} Battery"
|
|
|
|
@property
|
|
def native_value(self):
|
|
"""Return the state of the device."""
|
|
return self.roller.battery
|