2021-04-11 20:35:04 +00:00
|
|
|
"""Interfaces with iAlarm control panels."""
|
|
|
|
from homeassistant.components.alarm_control_panel import AlarmControlPanelEntity
|
|
|
|
from homeassistant.components.alarm_control_panel.const import (
|
|
|
|
SUPPORT_ALARM_ARM_AWAY,
|
|
|
|
SUPPORT_ALARM_ARM_HOME,
|
|
|
|
)
|
2021-10-23 18:42:50 +00:00
|
|
|
from homeassistant.helpers.entity import DeviceInfo
|
2021-04-11 20:35:04 +00:00
|
|
|
from homeassistant.helpers.update_coordinator import CoordinatorEntity
|
|
|
|
|
|
|
|
from .const import DATA_COORDINATOR, DOMAIN
|
|
|
|
|
|
|
|
|
|
|
|
async def async_setup_entry(hass, entry, async_add_entities) -> None:
|
|
|
|
"""Set up a iAlarm alarm control panel based on a config entry."""
|
|
|
|
coordinator = hass.data[DOMAIN][entry.entry_id][DATA_COORDINATOR]
|
|
|
|
async_add_entities([IAlarmPanel(coordinator)], False)
|
|
|
|
|
|
|
|
|
|
|
|
class IAlarmPanel(CoordinatorEntity, AlarmControlPanelEntity):
|
|
|
|
"""Representation of an iAlarm device."""
|
|
|
|
|
|
|
|
@property
|
2021-10-23 18:42:50 +00:00
|
|
|
def device_info(self) -> DeviceInfo:
|
2021-04-11 20:35:04 +00:00
|
|
|
"""Return device info for this device."""
|
2021-10-23 18:42:50 +00:00
|
|
|
return DeviceInfo(
|
|
|
|
identifiers={(DOMAIN, self.unique_id)},
|
|
|
|
manufacturer="Antifurto365 - Meian",
|
|
|
|
name=self.name,
|
|
|
|
)
|
2021-04-11 20:35:04 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def unique_id(self):
|
|
|
|
"""Return a unique id."""
|
|
|
|
return self.coordinator.mac
|
|
|
|
|
|
|
|
@property
|
|
|
|
def name(self):
|
|
|
|
"""Return the name."""
|
|
|
|
return "iAlarm"
|
|
|
|
|
|
|
|
@property
|
|
|
|
def state(self):
|
|
|
|
"""Return the state of the device."""
|
|
|
|
return self.coordinator.state
|
|
|
|
|
|
|
|
@property
|
|
|
|
def supported_features(self) -> int:
|
|
|
|
"""Return the list of supported features."""
|
|
|
|
return SUPPORT_ALARM_ARM_HOME | SUPPORT_ALARM_ARM_AWAY
|
|
|
|
|
|
|
|
def alarm_disarm(self, code=None):
|
|
|
|
"""Send disarm command."""
|
|
|
|
self.coordinator.ialarm.disarm()
|
|
|
|
|
|
|
|
def alarm_arm_home(self, code=None):
|
|
|
|
"""Send arm home command."""
|
|
|
|
self.coordinator.ialarm.arm_stay()
|
|
|
|
|
|
|
|
def alarm_arm_away(self, code=None):
|
|
|
|
"""Send arm away command."""
|
|
|
|
self.coordinator.ialarm.arm_away()
|