87 lines
3.1 KiB
Python
87 lines
3.1 KiB
Python
"""YoLink Garage Door."""
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from homeassistant.components.cover import (
|
|
CoverDeviceClass,
|
|
CoverEntity,
|
|
CoverEntityFeature,
|
|
)
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant, callback
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from .const import ATTR_COORDINATORS, ATTR_DEVICE_DOOR_SENSOR, DOMAIN
|
|
from .coordinator import YoLinkCoordinator
|
|
from .entity import YoLinkEntity
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up YoLink garage door from a config entry."""
|
|
device_coordinators = hass.data[DOMAIN][config_entry.entry_id][ATTR_COORDINATORS]
|
|
entities = [
|
|
YoLinkCoverEntity(config_entry, device_coordinator)
|
|
for device_coordinator in device_coordinators.values()
|
|
if device_coordinator.device.device_type == ATTR_DEVICE_DOOR_SENSOR
|
|
and device_coordinator.device.parent_id is not None
|
|
and device_coordinator.device.parent_id != "null"
|
|
]
|
|
async_add_entities(entities)
|
|
|
|
|
|
class YoLinkCoverEntity(YoLinkEntity, CoverEntity):
|
|
"""YoLink Cover Entity."""
|
|
|
|
def __init__(
|
|
self,
|
|
config_entry: ConfigEntry,
|
|
coordinator: YoLinkCoordinator,
|
|
) -> None:
|
|
"""Init YoLink garage door entity."""
|
|
super().__init__(config_entry, coordinator)
|
|
self._attr_unique_id = f"{coordinator.device.device_id}_door_state"
|
|
self._attr_name = f"{coordinator.device.device_name} (State)"
|
|
self._attr_device_class = CoverDeviceClass.GARAGE
|
|
self._attr_supported_features = (
|
|
CoverEntityFeature.OPEN | CoverEntityFeature.CLOSE
|
|
)
|
|
|
|
@callback
|
|
def update_entity_state(self, state: dict[str, Any]) -> None:
|
|
"""Update HA Entity State."""
|
|
self._attr_is_closed = state.get("state") == "closed"
|
|
self.async_write_ha_state()
|
|
|
|
async def toggle_garage_state(self, state: str) -> None:
|
|
"""Toggle Garage door state."""
|
|
# make sure current state is correct
|
|
await self.coordinator.async_refresh()
|
|
if state == "open" and self.is_closed is False:
|
|
return
|
|
if state == "close" and self.is_closed is True:
|
|
return
|
|
# get paired controller
|
|
door_controller_coordinator = self.hass.data[DOMAIN][
|
|
self.config_entry.entry_id
|
|
][ATTR_COORDINATORS].get(self.coordinator.device.parent_id)
|
|
if door_controller_coordinator is None:
|
|
raise ValueError(
|
|
"This device has not been paired with a garage door controller"
|
|
)
|
|
# call controller api open/close garage door
|
|
await door_controller_coordinator.device.call_device_http_api("toggle", None)
|
|
await self.coordinator.async_refresh()
|
|
|
|
async def async_open_cover(self, **kwargs: Any) -> None:
|
|
"""Open garage door."""
|
|
await self.toggle_garage_state("open")
|
|
|
|
async def async_close_cover(self, **kwargs: Any) -> None:
|
|
"""Close garage door."""
|
|
await self.toggle_garage_state("close")
|