mirror of https://github.com/simbaja/ha_gehome.git
32 lines
950 B
Python
32 lines
950 B
Python
"""GE Kitchen Sensor Entities"""
|
|
import async_timeout
|
|
import logging
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant
|
|
from typing import Callable
|
|
from .update_coordinator import GeKitchenUpdateCoordinator
|
|
from .appliance_api import GeBinarySensor
|
|
from .const import DOMAIN
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, config_entry: ConfigEntry, async_add_entities: Callable):
|
|
"""GE Kitchen sensors."""
|
|
|
|
coordinator = hass.data[DOMAIN][config_entry.entry_id] # type: GeKitchenUpdateCoordinator
|
|
|
|
# This should be a NOP, but let's be safe
|
|
with async_timeout.timeout(20):
|
|
await coordinator.initialization_future
|
|
|
|
apis = coordinator.appliance_apis.values()
|
|
sensors = [
|
|
entity
|
|
for api in apis
|
|
for entity in api.entities
|
|
if isinstance(entity, GeBinarySensor)
|
|
]
|
|
async_add_entities(sensors)
|