* platform set-up begin components * lights seem to be getting set up properly, not sure why they aren't being added... * typo * Dependencies line * toggle working * toggle working * added the switch to insteon_local First commit hope to test tonight or in the morning * Update insteon_local.py * Update insteon_local.py * Update insteon_local.py * Update insteon_local.py * Update insteon_local.py * Update insteon_local.py * Update insteon_local.py * Update insteon_local.py * Update insteon_local.py * Update insteon_local.py * Update insteon_local.py * move dependency declaration before import? * Move dependencies in Switch * Update insteon_local.py * wait for response * switched the while to an if switched the while 'cmd2' not in resp: to an if 'cmd2' not in resp: this seems to have the updater working * Switched the while sleep loop to an if switched the wile cmd2 not ins resp to be if cmd2 not in resp seems to be working. * Update insteon_local.py * import statement Updated the import statement to import the instance of the insteon_local component not the hub Instance. * updated import and the device assignment update the import to import the instance of the insteon_local component not the hub. * more changes to support the import change * more changes to support the import change * change to hass.data and add loop logic * && * Update insteon_local.py * Update insteon_local.py * logic fixes and throttle * reduce polling time * brightness support * import util * hound fixes * requirements file * more hound fixes * newline * newline weirdness * lint fixes * more lint fixes * switch state * Update insteon_local.py * log cmd2 for debugging * assume success * remove check for none * fix comments * fix comments again * fix comments, add fixed version of lib, add support for timeout, add support for port, handle invalid login and connection problems * fix logging exception * fix hounceci-bot errors * fix hounceci-bot errors * requirements fix * unique-id changes * make dimmer off use saved ramp rate * configurator working for lights * configurator working for switches? * configurator working for switches? * include model names and fix lint errors * lint fix * fix exception order * lint fixes * fix lint errors * update to use insteon local 0.38 * fix device id * move status check to library * move status check to library * add SKU to setup * lint fixes * requirements * linting
74 lines
2.2 KiB
Python
74 lines
2.2 KiB
Python
"""
|
|
Local Support for Insteon.
|
|
|
|
Based on the insteonlocal library
|
|
https://github.com/phareous/insteonlocal
|
|
|
|
For more details about this component, please refer to the documentation at
|
|
https://home-assistant.io/components/insteon_local/
|
|
"""
|
|
import logging
|
|
import voluptuous as vol
|
|
import requests
|
|
from homeassistant.const import (CONF_PASSWORD, CONF_USERNAME, CONF_HOST,
|
|
CONF_PORT, CONF_TIMEOUT)
|
|
import homeassistant.helpers.config_validation as cv
|
|
|
|
REQUIREMENTS = ['insteonlocal==0.39']
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
DOMAIN = 'insteon_local'
|
|
|
|
DEFAULT_PORT = 25105
|
|
|
|
DEFAULT_TIMEOUT = 10
|
|
|
|
CONFIG_SCHEMA = vol.Schema({
|
|
DOMAIN: vol.Schema({
|
|
vol.Required(CONF_HOST): cv.string,
|
|
vol.Required(CONF_PASSWORD): cv.string,
|
|
vol.Required(CONF_USERNAME): cv.string,
|
|
vol.Optional(CONF_PORT, default=DEFAULT_PORT): cv.port,
|
|
vol.Optional(CONF_TIMEOUT, default=DEFAULT_TIMEOUT): cv.positive_int
|
|
})
|
|
}, extra=vol.ALLOW_EXTRA)
|
|
|
|
|
|
def setup(hass, config):
|
|
"""Setup Insteon Hub component.
|
|
|
|
This will automatically import associated lights.
|
|
"""
|
|
from insteonlocal.Hub import Hub
|
|
|
|
conf = config[DOMAIN]
|
|
username = conf.get(CONF_USERNAME)
|
|
password = conf.get(CONF_PASSWORD)
|
|
host = conf.get(CONF_HOST)
|
|
port = conf.get(CONF_PORT)
|
|
timeout = conf.get(CONF_TIMEOUT)
|
|
|
|
try:
|
|
insteonhub = Hub(host, username, password, port, timeout, _LOGGER)
|
|
# check for successful connection
|
|
insteonhub.get_buffer_status()
|
|
except requests.exceptions.ConnectTimeout:
|
|
_LOGGER.error("Error on insteon_local."
|
|
"Could not connect. Check config", exc_info=True)
|
|
return False
|
|
except requests.exceptions.ConnectionError:
|
|
_LOGGER.error("Error on insteon_local. Could not connect."
|
|
"Check config", exc_info=True)
|
|
return False
|
|
except requests.exceptions.RequestException:
|
|
if insteonhub.http_code == 401:
|
|
_LOGGER.error("Bad user/pass for insteon_local hub")
|
|
return False
|
|
else:
|
|
_LOGGER.error("Error on insteon_local hub check", exc_info=True)
|
|
return False
|
|
|
|
hass.data['insteon_local'] = insteonhub
|
|
|
|
return True
|