mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 05:07:41 +00:00
Add Genie Aladdin Connect cover component (#15699)
* Add Genie Aladdin Connect cover component * Fix lines being too long * Fix issues found in review * remove Unknown state, use None instead * Fixed requirements_all
This commit is contained in:
parent
3959f82030
commit
8dbe78a21a
@ -404,6 +404,7 @@ omit =
|
|||||||
homeassistant/components/climate/touchline.py
|
homeassistant/components/climate/touchline.py
|
||||||
homeassistant/components/climate/venstar.py
|
homeassistant/components/climate/venstar.py
|
||||||
homeassistant/components/climate/zhong_hong.py
|
homeassistant/components/climate/zhong_hong.py
|
||||||
|
homeassistant/components/cover/aladdin_connect.py
|
||||||
homeassistant/components/cover/brunt.py
|
homeassistant/components/cover/brunt.py
|
||||||
homeassistant/components/cover/garadget.py
|
homeassistant/components/cover/garadget.py
|
||||||
homeassistant/components/cover/gogogate2.py
|
homeassistant/components/cover/gogogate2.py
|
||||||
|
115
homeassistant/components/cover/aladdin_connect.py
Normal file
115
homeassistant/components/cover/aladdin_connect.py
Normal file
@ -0,0 +1,115 @@
|
|||||||
|
"""
|
||||||
|
Platform for the Aladdin Connect cover component.
|
||||||
|
|
||||||
|
For more details about this platform, please refer to the documentation
|
||||||
|
https://home-assistant.io/components/cover.aladdin_connect/
|
||||||
|
"""
|
||||||
|
import logging
|
||||||
|
|
||||||
|
import voluptuous as vol
|
||||||
|
|
||||||
|
from homeassistant.components.cover import (CoverDevice, PLATFORM_SCHEMA,
|
||||||
|
SUPPORT_OPEN, SUPPORT_CLOSE)
|
||||||
|
from homeassistant.const import (CONF_USERNAME, CONF_PASSWORD, STATE_CLOSED,
|
||||||
|
STATE_OPENING, STATE_CLOSING, STATE_OPEN)
|
||||||
|
import homeassistant.helpers.config_validation as cv
|
||||||
|
|
||||||
|
REQUIREMENTS = ['aladdin_connect==0.1']
|
||||||
|
|
||||||
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
NOTIFICATION_ID = 'aladdin_notification'
|
||||||
|
NOTIFICATION_TITLE = 'Aladdin Connect Cover Setup'
|
||||||
|
|
||||||
|
STATES_MAP = {
|
||||||
|
'open': STATE_OPEN,
|
||||||
|
'opening': STATE_OPENING,
|
||||||
|
'closed': STATE_CLOSED,
|
||||||
|
'closing': STATE_CLOSING
|
||||||
|
}
|
||||||
|
|
||||||
|
SUPPORTED_FEATURES = SUPPORT_OPEN | SUPPORT_CLOSE
|
||||||
|
|
||||||
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
|
||||||
|
vol.Required(CONF_USERNAME): cv.string,
|
||||||
|
vol.Required(CONF_PASSWORD): cv.string
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
def setup_platform(hass, config, add_devices, discovery_info=None):
|
||||||
|
"""Set up the Aladdin Connect platform."""
|
||||||
|
from aladdin_connect import AladdinConnectClient
|
||||||
|
|
||||||
|
username = config.get(CONF_USERNAME)
|
||||||
|
password = config.get(CONF_PASSWORD)
|
||||||
|
acc = AladdinConnectClient(username, password)
|
||||||
|
|
||||||
|
try:
|
||||||
|
if not acc.login():
|
||||||
|
raise ValueError("Username or Password is incorrect")
|
||||||
|
add_devices(AladdinDevice(acc, door) for door in acc.get_doors())
|
||||||
|
except (TypeError, KeyError, NameError, ValueError) as ex:
|
||||||
|
_LOGGER.error("%s", ex)
|
||||||
|
hass.components.persistent_notification.create(
|
||||||
|
'Error: {}<br />'
|
||||||
|
'You will need to restart hass after fixing.'
|
||||||
|
''.format(ex),
|
||||||
|
title=NOTIFICATION_TITLE,
|
||||||
|
notification_id=NOTIFICATION_ID)
|
||||||
|
|
||||||
|
|
||||||
|
class AladdinDevice(CoverDevice):
|
||||||
|
"""Representation of Aladdin Connect cover."""
|
||||||
|
|
||||||
|
def __init__(self, acc, device):
|
||||||
|
"""Initialize the cover."""
|
||||||
|
self._acc = acc
|
||||||
|
self._device_id = device['device_id']
|
||||||
|
self._number = device['door_number']
|
||||||
|
self._name = device['name']
|
||||||
|
self._status = STATES_MAP.get(device['status'])
|
||||||
|
|
||||||
|
@property
|
||||||
|
def device_class(self):
|
||||||
|
"""Define this cover as a garage door."""
|
||||||
|
return 'garage'
|
||||||
|
|
||||||
|
@property
|
||||||
|
def supported_features(self):
|
||||||
|
"""Flag supported features."""
|
||||||
|
return SUPPORTED_FEATURES
|
||||||
|
|
||||||
|
@property
|
||||||
|
def name(self):
|
||||||
|
"""Return the name of the garage door."""
|
||||||
|
return self._name
|
||||||
|
|
||||||
|
@property
|
||||||
|
def is_opening(self):
|
||||||
|
"""Return if the cover is opening or not."""
|
||||||
|
return self._status == STATE_OPENING
|
||||||
|
|
||||||
|
@property
|
||||||
|
def is_closing(self):
|
||||||
|
"""Return if the cover is closing or not."""
|
||||||
|
return self._status == STATE_CLOSING
|
||||||
|
|
||||||
|
@property
|
||||||
|
def is_closed(self):
|
||||||
|
"""Return None if status is unknown, True if closed, else False."""
|
||||||
|
if self._status is None:
|
||||||
|
return None
|
||||||
|
return self._status == STATE_CLOSED
|
||||||
|
|
||||||
|
def close_cover(self, **kwargs):
|
||||||
|
"""Issue close command to cover."""
|
||||||
|
self._acc.close_door(self._device_id, self._number)
|
||||||
|
|
||||||
|
def open_cover(self, **kwargs):
|
||||||
|
"""Issue open command to cover."""
|
||||||
|
self._acc.open_door(self._device_id, self._number)
|
||||||
|
|
||||||
|
def update(self):
|
||||||
|
"""Update status of cover."""
|
||||||
|
acc_status = self._acc.get_door_status(self._device_id, self._number)
|
||||||
|
self._status = STATES_MAP.get(acc_status)
|
@ -108,6 +108,9 @@ aiolifx_effects==0.1.2
|
|||||||
# homeassistant.components.scene.hunterdouglas_powerview
|
# homeassistant.components.scene.hunterdouglas_powerview
|
||||||
aiopvapi==1.5.4
|
aiopvapi==1.5.4
|
||||||
|
|
||||||
|
# homeassistant.components.cover.aladdin_connect
|
||||||
|
aladdin_connect==0.1
|
||||||
|
|
||||||
# homeassistant.components.alarmdecoder
|
# homeassistant.components.alarmdecoder
|
||||||
alarmdecoder==1.13.2
|
alarmdecoder==1.13.2
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user