60 lines
1.7 KiB
Python
60 lines
1.7 KiB
Python
"""Support for deCONZ locks."""
|
|
from homeassistant.components.lock import DOMAIN, LockEntity
|
|
from homeassistant.core import callback
|
|
from homeassistant.helpers.dispatcher import async_dispatcher_connect
|
|
|
|
from .const import LOCKS, NEW_LIGHT
|
|
from .deconz_device import DeconzDevice
|
|
from .gateway import get_gateway_from_config_entry
|
|
|
|
|
|
async def async_setup_entry(hass, config_entry, async_add_entities):
|
|
"""Set up locks for deCONZ component.
|
|
|
|
Locks are based on the same device class as lights in deCONZ.
|
|
"""
|
|
gateway = get_gateway_from_config_entry(hass, config_entry)
|
|
gateway.entities[DOMAIN] = set()
|
|
|
|
@callback
|
|
def async_add_lock(lights):
|
|
"""Add lock from deCONZ."""
|
|
entities = []
|
|
|
|
for light in lights:
|
|
|
|
if light.type in LOCKS and light.uniqueid not in gateway.entities[DOMAIN]:
|
|
entities.append(DeconzLock(light, gateway))
|
|
|
|
if entities:
|
|
async_add_entities(entities)
|
|
|
|
gateway.listeners.append(
|
|
async_dispatcher_connect(
|
|
hass, gateway.async_signal_new_device(NEW_LIGHT), async_add_lock
|
|
)
|
|
)
|
|
|
|
async_add_lock(gateway.api.lights.values())
|
|
|
|
|
|
class DeconzLock(DeconzDevice, LockEntity):
|
|
"""Representation of a deCONZ lock."""
|
|
|
|
TYPE = DOMAIN
|
|
|
|
@property
|
|
def is_locked(self):
|
|
"""Return true if lock is on."""
|
|
return self._device.state
|
|
|
|
async def async_lock(self, **kwargs):
|
|
"""Lock the lock."""
|
|
data = {"on": True}
|
|
await self._device.async_set_state(data)
|
|
|
|
async def async_unlock(self, **kwargs):
|
|
"""Unlock the lock."""
|
|
data = {"on": False}
|
|
await self._device.async_set_state(data)
|