core/homeassistant/components/sense/binary_sensor.py

113 lines
3.6 KiB
Python
Raw Normal View History

"""Support for monitoring a Sense energy sensor device."""
import logging
2021-12-16 13:25:12 +00:00
from homeassistant.components.binary_sensor import (
BinarySensorDeviceClass,
BinarySensorEntity,
)
from homeassistant.config_entries import ConfigEntry
from homeassistant.core import HomeAssistant, callback
from homeassistant.helpers import entity_registry as er
2019-12-01 05:35:45 +00:00
from homeassistant.helpers.dispatcher import async_dispatcher_connect
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from .const import (
ATTRIBUTION,
DOMAIN,
MDI_ICONS,
SENSE_DATA,
SENSE_DEVICE_UPDATE,
SENSE_DEVICES_DATA,
SENSE_DISCOVERED_DEVICES_DATA,
)
_LOGGER = logging.getLogger(__name__)
async def async_setup_entry(
hass: HomeAssistant,
config_entry: ConfigEntry,
async_add_entities: AddEntitiesCallback,
) -> None:
2018-12-01 18:27:21 +00:00
"""Set up the Sense binary sensor."""
data = hass.data[DOMAIN][config_entry.entry_id][SENSE_DATA]
sense_devices_data = hass.data[DOMAIN][config_entry.entry_id][SENSE_DEVICES_DATA]
sense_monitor_id = data.sense_monitor_id
sense_devices = hass.data[DOMAIN][config_entry.entry_id][
SENSE_DISCOVERED_DEVICES_DATA
]
2019-07-31 19:25:30 +00:00
devices = [
SenseDevice(sense_devices_data, device, sense_monitor_id)
2019-07-31 19:25:30 +00:00
for device in sense_devices
if device["tags"]["DeviceListAllowed"] == "true"
2019-07-31 19:25:30 +00:00
]
await _migrate_old_unique_ids(hass, devices)
async_add_entities(devices)
async def _migrate_old_unique_ids(hass, devices):
registry = er.async_get(hass)
for device in devices:
# Migration of old not so unique ids
old_entity_id = registry.async_get_entity_id(
"binary_sensor", DOMAIN, device.old_unique_id
)
if old_entity_id is not None:
_LOGGER.debug(
"Migrating unique_id from [%s] to [%s]",
device.old_unique_id,
device.unique_id,
)
registry.async_update_entity(old_entity_id, new_unique_id=device.unique_id)
def sense_to_mdi(sense_icon):
"""Convert sense icon to mdi icon."""
2019-07-31 19:25:30 +00:00
return "mdi:{}".format(MDI_ICONS.get(sense_icon, "power-plug"))
class SenseDevice(BinarySensorEntity):
"""Implementation of a Sense energy device binary sensor."""
_attr_attribution = ATTRIBUTION
_attr_should_poll = False
_attr_available = False
_attr_device_class = BinarySensorDeviceClass.POWER
def __init__(self, sense_devices_data, device, sense_monitor_id):
2018-12-01 18:27:21 +00:00
"""Initialize the Sense binary sensor."""
self._attr_name = device["name"]
2019-07-31 19:25:30 +00:00
self._id = device["id"]
self._sense_monitor_id = sense_monitor_id
self._attr_unique_id = f"{sense_monitor_id}-{self._id}"
self._attr_icon = sense_to_mdi(device["icon"])
self._sense_devices_data = sense_devices_data
@property
def old_unique_id(self):
"""Return the old not so unique id of the binary sensor."""
return self._id
async def async_added_to_hass(self) -> None:
"""Register callbacks."""
self.async_on_remove(
async_dispatcher_connect(
self.hass,
f"{SENSE_DEVICE_UPDATE}-{self._sense_monitor_id}",
self._async_update_from_data,
)
2019-07-31 19:25:30 +00:00
)
@callback
def _async_update_from_data(self):
"""Get the latest data, update state. Must not do I/O."""
new_state = bool(self._sense_devices_data.get_device_by_id(self._id))
if self._attr_available and self._attr_is_on == new_state:
return
self._attr_available = True
self._attr_is_on = new_state
self.async_write_ha_state()