60 lines
1.7 KiB
Python
60 lines
1.7 KiB
Python
"""Support for Tellstick covers using Tellstick Net."""
|
|
|
|
from typing import Any
|
|
|
|
from homeassistant.components import cover
|
|
from homeassistant.components.cover import CoverEntity
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.dispatcher import async_dispatcher_connect
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from . import TelldusLiveClient
|
|
from .const import DOMAIN, TELLDUS_DISCOVERY_NEW
|
|
from .entity import TelldusLiveEntity
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up tellduslive sensors dynamically."""
|
|
|
|
async def async_discover_cover(device_id):
|
|
"""Discover and add a discovered sensor."""
|
|
client: TelldusLiveClient = hass.data[DOMAIN]
|
|
async_add_entities([TelldusLiveCover(client, device_id)])
|
|
|
|
async_dispatcher_connect(
|
|
hass,
|
|
TELLDUS_DISCOVERY_NEW.format(cover.DOMAIN, DOMAIN),
|
|
async_discover_cover,
|
|
)
|
|
|
|
|
|
class TelldusLiveCover(TelldusLiveEntity, CoverEntity):
|
|
"""Representation of a cover."""
|
|
|
|
_attr_name = None
|
|
|
|
@property
|
|
def is_closed(self) -> bool:
|
|
"""Return the current position of the cover."""
|
|
return self.device.is_down
|
|
|
|
def close_cover(self, **kwargs: Any) -> None:
|
|
"""Close the cover."""
|
|
self.device.down()
|
|
self.schedule_update_ha_state()
|
|
|
|
def open_cover(self, **kwargs: Any) -> None:
|
|
"""Open the cover."""
|
|
self.device.up()
|
|
self.schedule_update_ha_state()
|
|
|
|
def stop_cover(self, **kwargs: Any) -> None:
|
|
"""Stop the cover."""
|
|
self.device.stop()
|
|
self.schedule_update_ha_state()
|