mirror of
https://github.com/home-assistant/core.git
synced 2026-09-24 15:31:52 -05:00
100 lines
3.0 KiB
Python
100 lines
3.0 KiB
Python
"""Support for Envisalink zone bypass switches."""
|
|
|
|
import logging
|
|
from typing import Any, override
|
|
|
|
from pyenvisalink import EnvisalinkAlarmPanel
|
|
|
|
from homeassistant.components.switch import SwitchEntity
|
|
from homeassistant.core import HomeAssistant, callback
|
|
from homeassistant.helpers.dispatcher import async_dispatcher_connect
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
from homeassistant.helpers.typing import ConfigType, DiscoveryInfoType
|
|
|
|
from . import (
|
|
CONF_ZONENAME,
|
|
CONF_ZONES,
|
|
DATA_EVL,
|
|
SIGNAL_ZONE_BYPASS_UPDATE,
|
|
ZONE_SCHEMA,
|
|
)
|
|
from .entity import EnvisalinkEntity
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
async def async_setup_platform(
|
|
hass: HomeAssistant,
|
|
config: ConfigType,
|
|
async_add_entities: AddEntitiesCallback,
|
|
discovery_info: DiscoveryInfoType | None = None,
|
|
) -> None:
|
|
"""Set up the Envisalink switch entities."""
|
|
if not discovery_info:
|
|
return
|
|
configured_zones: dict[int, dict[str, Any]] = discovery_info[CONF_ZONES]
|
|
|
|
entities = []
|
|
for zone_num, zone_data in configured_zones.items():
|
|
entity_config_data = ZONE_SCHEMA(zone_data)
|
|
zone_name = f"{entity_config_data[CONF_ZONENAME]}_bypass"
|
|
_LOGGER.debug("Setting up zone_bypass switch: %s", zone_name)
|
|
|
|
entity = EnvisalinkSwitch(
|
|
zone_num,
|
|
zone_name,
|
|
hass.data[DATA_EVL].alarm_state["zone"][zone_num],
|
|
hass.data[DATA_EVL],
|
|
)
|
|
entities.append(entity)
|
|
|
|
async_add_entities(entities)
|
|
|
|
|
|
class EnvisalinkSwitch(EnvisalinkEntity, SwitchEntity):
|
|
"""Representation of an Envisalink switch."""
|
|
|
|
def __init__(
|
|
self,
|
|
zone_number: int,
|
|
zone_name: str,
|
|
info: dict[str, Any],
|
|
controller: EnvisalinkAlarmPanel,
|
|
) -> None:
|
|
"""Initialize the switch."""
|
|
self._zone_number = zone_number
|
|
|
|
super().__init__(zone_name, info, controller)
|
|
|
|
@override
|
|
async def async_added_to_hass(self) -> None:
|
|
"""Register callbacks."""
|
|
self.async_on_remove(
|
|
async_dispatcher_connect(
|
|
self.hass, SIGNAL_ZONE_BYPASS_UPDATE, self.async_update_callback
|
|
)
|
|
)
|
|
|
|
@property
|
|
@override
|
|
def is_on(self) -> bool:
|
|
"""Return the boolean response if the zone is bypassed."""
|
|
return self._info["bypassed"]
|
|
|
|
@override
|
|
async def async_turn_on(self, **kwargs: Any) -> None:
|
|
"""Send the bypass keypress sequence to toggle the zone bypass."""
|
|
self._controller.toggle_zone_bypass(self._zone_number)
|
|
|
|
@override
|
|
async def async_turn_off(self, **kwargs: Any) -> None:
|
|
"""Send the bypass keypress sequence to toggle the zone bypass."""
|
|
self._controller.toggle_zone_bypass(self._zone_number)
|
|
|
|
@callback
|
|
def async_update_callback(self, bypass_map):
|
|
"""Update the zone bypass state in HA, if needed."""
|
|
if bypass_map is None or self._zone_number in bypass_map:
|
|
_LOGGER.debug("Bypass state changed for zone %d", self._zone_number)
|
|
self.async_write_ha_state()
|