* Updated abodepy version to 0.7.1 * Refactored to use AbodeDevice. Added Abode Lock device. * Added push updates to abode devices. * Upgraded to 0.7.2 after finding issue with callbacks. * Refactored to use AbodeDevice. Added Abode Lock device. * Added push updates to abode devices. * Upgraded to 0.7.2 after finding issue with callbacks. * Bumped version to 0.8.2. Modified code to work with new constants and properties. Added cover and switch. * Fixed hound violations. * Updated to 0.8.3 to fix small bug with standby mode. Fixed comment in cover/abode.py. * Fix lint issues * Removed excessive logging. Moved device callback registration to async_added_to_hass. Moved abode controller from global into hass data. * Removed explicit None from dict.get() * Move device class into the constructor. * Changed constant name to platforms. * Changes as requested. * Removing stray blank line. * Added blank line of which I'm not sure how it was removed. * Updated version to 0.9.0. Fixed motion sensor. Added power_switch_meter device type. * Update abode.py * fix lint
49 lines
1.3 KiB
Python
49 lines
1.3 KiB
Python
"""
|
|
This component provides HA lock support for Abode Security System.
|
|
|
|
For more details about this platform, please refer to the documentation at
|
|
https://home-assistant.io/components/lock.abode/
|
|
"""
|
|
import logging
|
|
|
|
from homeassistant.components.abode import AbodeDevice, DATA_ABODE
|
|
from homeassistant.components.lock import LockDevice
|
|
|
|
|
|
DEPENDENCIES = ['abode']
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
def setup_platform(hass, config, add_devices, discovery_info=None):
|
|
"""Set up Abode lock devices."""
|
|
import abodepy.helpers.constants as CONST
|
|
|
|
abode = hass.data[DATA_ABODE]
|
|
|
|
sensors = []
|
|
for sensor in abode.get_devices(type_filter=(CONST.DEVICE_DOOR_LOCK)):
|
|
sensors.append(AbodeLock(abode, sensor))
|
|
|
|
add_devices(sensors)
|
|
|
|
|
|
class AbodeLock(AbodeDevice, LockDevice):
|
|
"""Representation of an Abode lock."""
|
|
|
|
def __init__(self, controller, device):
|
|
"""Initialize the Abode device."""
|
|
AbodeDevice.__init__(self, controller, device)
|
|
|
|
def lock(self, **kwargs):
|
|
"""Lock the device."""
|
|
self._device.lock()
|
|
|
|
def unlock(self, **kwargs):
|
|
"""Unlock the device."""
|
|
self._device.unlock()
|
|
|
|
@property
|
|
def is_locked(self):
|
|
"""Return true if device is on."""
|
|
return self._device.is_locked
|