mirror of
https://github.com/home-assistant/core.git
synced 2025-04-29 19:57:52 +00:00
Support for lock domain in esphome (#65280)
This commit is contained in:
parent
3b3e12aaa2
commit
2bc2f85b1b
@ -319,6 +319,7 @@ omit =
|
|||||||
homeassistant/components/esphome/entry_data.py
|
homeassistant/components/esphome/entry_data.py
|
||||||
homeassistant/components/esphome/fan.py
|
homeassistant/components/esphome/fan.py
|
||||||
homeassistant/components/esphome/light.py
|
homeassistant/components/esphome/light.py
|
||||||
|
homeassistant/components/esphome/lock.py
|
||||||
homeassistant/components/esphome/number.py
|
homeassistant/components/esphome/number.py
|
||||||
homeassistant/components/esphome/select.py
|
homeassistant/components/esphome/select.py
|
||||||
homeassistant/components/esphome/sensor.py
|
homeassistant/components/esphome/sensor.py
|
||||||
|
@ -19,6 +19,7 @@ from aioesphomeapi import (
|
|||||||
EntityState,
|
EntityState,
|
||||||
FanInfo,
|
FanInfo,
|
||||||
LightInfo,
|
LightInfo,
|
||||||
|
LockInfo,
|
||||||
NumberInfo,
|
NumberInfo,
|
||||||
SelectInfo,
|
SelectInfo,
|
||||||
SensorInfo,
|
SensorInfo,
|
||||||
@ -44,6 +45,7 @@ INFO_TYPE_TO_PLATFORM: dict[type[EntityInfo], str] = {
|
|||||||
CoverInfo: "cover",
|
CoverInfo: "cover",
|
||||||
FanInfo: "fan",
|
FanInfo: "fan",
|
||||||
LightInfo: "light",
|
LightInfo: "light",
|
||||||
|
LockInfo: "lock",
|
||||||
NumberInfo: "number",
|
NumberInfo: "number",
|
||||||
SelectInfo: "select",
|
SelectInfo: "select",
|
||||||
SensorInfo: "sensor",
|
SensorInfo: "sensor",
|
||||||
|
87
homeassistant/components/esphome/lock.py
Normal file
87
homeassistant/components/esphome/lock.py
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
"""Support for ESPHome locks."""
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
from typing import Any
|
||||||
|
|
||||||
|
from aioesphomeapi import LockCommand, LockEntityState, LockInfo, LockState
|
||||||
|
|
||||||
|
from homeassistant.components.lock import SUPPORT_OPEN, LockEntity
|
||||||
|
from homeassistant.config_entries import ConfigEntry
|
||||||
|
from homeassistant.const import ATTR_CODE
|
||||||
|
from homeassistant.core import HomeAssistant
|
||||||
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
||||||
|
|
||||||
|
from . import EsphomeEntity, esphome_state_property, platform_async_setup_entry
|
||||||
|
|
||||||
|
|
||||||
|
async def async_setup_entry(
|
||||||
|
hass: HomeAssistant, entry: ConfigEntry, async_add_entities: AddEntitiesCallback
|
||||||
|
) -> None:
|
||||||
|
"""Set up ESPHome switches based on a config entry."""
|
||||||
|
await platform_async_setup_entry(
|
||||||
|
hass,
|
||||||
|
entry,
|
||||||
|
async_add_entities,
|
||||||
|
component_key="lock",
|
||||||
|
info_type=LockInfo,
|
||||||
|
entity_type=EsphomeLock,
|
||||||
|
state_type=LockEntityState,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
# https://github.com/PyCQA/pylint/issues/3150 for all @esphome_state_property
|
||||||
|
# pylint: disable=invalid-overridden-method
|
||||||
|
|
||||||
|
|
||||||
|
class EsphomeLock(EsphomeEntity[LockInfo, LockEntityState], LockEntity):
|
||||||
|
"""A lock implementation for ESPHome."""
|
||||||
|
|
||||||
|
@property
|
||||||
|
def assumed_state(self) -> bool:
|
||||||
|
"""Return True if unable to access real state of the entity."""
|
||||||
|
return self._static_info.assumed_state
|
||||||
|
|
||||||
|
@property
|
||||||
|
def supported_features(self) -> int:
|
||||||
|
"""Flag supported features."""
|
||||||
|
return SUPPORT_OPEN if self._static_info.supports_open else 0
|
||||||
|
|
||||||
|
@property
|
||||||
|
def code_format(self) -> str | None:
|
||||||
|
"""Regex for code format or None if no code is required."""
|
||||||
|
if self._static_info.requires_code:
|
||||||
|
return self._static_info.code_format
|
||||||
|
return None
|
||||||
|
|
||||||
|
@esphome_state_property
|
||||||
|
def is_locked(self) -> bool | None:
|
||||||
|
"""Return true if the lock is locked."""
|
||||||
|
return self._state.state == LockState.LOCKED
|
||||||
|
|
||||||
|
@esphome_state_property
|
||||||
|
def is_locking(self) -> bool | None:
|
||||||
|
"""Return true if the lock is locking."""
|
||||||
|
return self._state.state == LockState.LOCKING
|
||||||
|
|
||||||
|
@esphome_state_property
|
||||||
|
def is_unlocking(self) -> bool | None:
|
||||||
|
"""Return true if the lock is unlocking."""
|
||||||
|
return self._state.state == LockState.UNLOCKING
|
||||||
|
|
||||||
|
@esphome_state_property
|
||||||
|
def is_jammed(self) -> bool | None:
|
||||||
|
"""Return true if the lock is jammed (incomplete locking)."""
|
||||||
|
return self._state.state == LockState.JAMMED
|
||||||
|
|
||||||
|
async def async_lock(self, **kwargs: Any) -> None:
|
||||||
|
"""Lock the lock."""
|
||||||
|
await self._client.lock_command(self._static_info.key, LockCommand.LOCK)
|
||||||
|
|
||||||
|
async def async_unlock(self, **kwargs: Any) -> None:
|
||||||
|
"""Unlock the lock."""
|
||||||
|
code = kwargs.get(ATTR_CODE, None)
|
||||||
|
await self._client.lock_command(self._static_info.key, LockCommand.UNLOCK, code)
|
||||||
|
|
||||||
|
async def async_open(self, **kwargs: Any) -> None:
|
||||||
|
"""Open the door latch."""
|
||||||
|
await self._client.lock_command(self._static_info.key, LockCommand.OPEN)
|
Loading…
x
Reference in New Issue
Block a user