* Adds support for config entries and device registry * Fixing string formatting for logger * Add unit test for abode config flow * Fix for lights, only allow one config, add ability to unload entry * Fix for subscribing to hass_events on adding abode component * Several fixes from code review * Several fixes from second code review * Several fixes from third code review * Update documentation url to fix branch conflict * Fixes config flow and removes unused constants * Fix for switches, polling entry option, improved tests * Update .coveragerc, disable pylint W0611, remove polling from UI * Multiple fixes and edits to adhere to style guidelines * Removed unique_id * Minor correction for formatting error in rebase * Resolves issue causing CI to fail * Bump abodepy version * Add remove device callback and minor clean up * Fix incorrect method name * Docstring edits * Fix duplicate import issues from rebase * Add logout_listener attribute to AbodeSystem * Add additional test for complete coverage
75 lines
2 KiB
Python
75 lines
2 KiB
Python
"""Support for Abode Security System alarm control panels."""
|
|
import logging
|
|
|
|
import homeassistant.components.alarm_control_panel as alarm
|
|
from homeassistant.const import (
|
|
ATTR_ATTRIBUTION,
|
|
STATE_ALARM_ARMED_AWAY,
|
|
STATE_ALARM_ARMED_HOME,
|
|
STATE_ALARM_DISARMED,
|
|
)
|
|
|
|
from . import AbodeDevice
|
|
from .const import ATTRIBUTION, DOMAIN
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
ICON = "mdi:security"
|
|
|
|
|
|
async def async_setup_platform(hass, config, async_add_entities, discovery_info=None):
|
|
"""Platform uses config entry setup."""
|
|
pass
|
|
|
|
|
|
async def async_setup_entry(hass, config_entry, async_add_entities):
|
|
"""Set up an alarm control panel for an Abode device."""
|
|
data = hass.data[DOMAIN]
|
|
|
|
async_add_entities(
|
|
[AbodeAlarm(data, await hass.async_add_executor_job(data.abode.get_alarm))]
|
|
)
|
|
|
|
|
|
class AbodeAlarm(AbodeDevice, alarm.AlarmControlPanel):
|
|
"""An alarm_control_panel implementation for Abode."""
|
|
|
|
@property
|
|
def icon(self):
|
|
"""Return the icon."""
|
|
return ICON
|
|
|
|
@property
|
|
def state(self):
|
|
"""Return the state of the device."""
|
|
if self._device.is_standby:
|
|
state = STATE_ALARM_DISARMED
|
|
elif self._device.is_away:
|
|
state = STATE_ALARM_ARMED_AWAY
|
|
elif self._device.is_home:
|
|
state = STATE_ALARM_ARMED_HOME
|
|
else:
|
|
state = None
|
|
return state
|
|
|
|
def alarm_disarm(self, code=None):
|
|
"""Send disarm command."""
|
|
self._device.set_standby()
|
|
|
|
def alarm_arm_home(self, code=None):
|
|
"""Send arm home command."""
|
|
self._device.set_home()
|
|
|
|
def alarm_arm_away(self, code=None):
|
|
"""Send arm away command."""
|
|
self._device.set_away()
|
|
|
|
@property
|
|
def device_state_attributes(self):
|
|
"""Return the state attributes."""
|
|
return {
|
|
ATTR_ATTRIBUTION: ATTRIBUTION,
|
|
"device_id": self._device.device_id,
|
|
"battery_backup": self._device.battery,
|
|
"cellular_backup": self._device.is_cellular,
|
|
}
|