99 lines
2.7 KiB
Python
99 lines
2.7 KiB
Python
"""
|
|
Component for interacting with a Lutron Caseta system.
|
|
|
|
For more details about this component, please refer to the documentation at
|
|
https://home-assistant.io/components/lutron_caseta/
|
|
"""
|
|
import asyncio
|
|
import logging
|
|
|
|
import voluptuous as vol
|
|
|
|
import homeassistant.helpers.config_validation as cv
|
|
from homeassistant.const import CONF_HOST
|
|
from homeassistant.helpers import discovery
|
|
from homeassistant.helpers.entity import Entity
|
|
|
|
REQUIREMENTS = ['https://github.com/gurumitts/'
|
|
'pylutron-caseta/archive/v0.2.6.zip#'
|
|
'pylutron-caseta==v0.2.6']
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
LUTRON_CASETA_SMARTBRIDGE = 'lutron_smartbridge'
|
|
|
|
DOMAIN = 'lutron_caseta'
|
|
|
|
CONFIG_SCHEMA = vol.Schema({
|
|
DOMAIN: vol.Schema({
|
|
vol.Required(CONF_HOST): cv.string
|
|
})
|
|
}, extra=vol.ALLOW_EXTRA)
|
|
|
|
|
|
def setup(hass, base_config):
|
|
"""Setup the Lutron component."""
|
|
from pylutron_caseta.smartbridge import Smartbridge
|
|
|
|
config = base_config.get(DOMAIN)
|
|
hass.data[LUTRON_CASETA_SMARTBRIDGE] = Smartbridge(
|
|
hostname=config[CONF_HOST]
|
|
)
|
|
if not hass.data[LUTRON_CASETA_SMARTBRIDGE].is_connected():
|
|
_LOGGER.error("Unable to connect to Lutron smartbridge at %s",
|
|
config[CONF_HOST])
|
|
return False
|
|
|
|
_LOGGER.info("Connected to Lutron smartbridge at %s",
|
|
config[CONF_HOST])
|
|
|
|
for component in ('light', 'switch'):
|
|
discovery.load_platform(hass, component, DOMAIN, {}, config)
|
|
|
|
return True
|
|
|
|
|
|
class LutronCasetaDevice(Entity):
|
|
"""Common base class for all Lutron Caseta devices."""
|
|
|
|
def __init__(self, device, bridge):
|
|
"""Set up the base class.
|
|
|
|
[:param]device the device metadata
|
|
[:param]bridge the smartbridge object
|
|
"""
|
|
self._device_id = device["device_id"]
|
|
self._device_type = device["type"]
|
|
self._device_name = device["name"]
|
|
self._device_zone = device["zone"]
|
|
self._state = None
|
|
self._smartbridge = bridge
|
|
|
|
@asyncio.coroutine
|
|
def async_added_to_hass(self):
|
|
"""Register callbacks."""
|
|
self.hass.async_add_job(
|
|
self._smartbridge.add_subscriber, self._device_id,
|
|
self._update_callback
|
|
)
|
|
|
|
def _update_callback(self):
|
|
self.schedule_update_ha_state()
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return the name of the device."""
|
|
return self._device_name
|
|
|
|
@property
|
|
def device_state_attributes(self):
|
|
"""Return the state attributes."""
|
|
attr = {'Device ID': self._device_id,
|
|
'Zone ID': self._device_zone}
|
|
return attr
|
|
|
|
@property
|
|
def should_poll(self):
|
|
"""No polling needed."""
|
|
return False
|