core/homeassistant/components/insteon_hub.py

45 lines
1.1 KiB
Python
Raw Normal View History

2016-01-19 13:10:17 +00:00
"""
Support for Insteon Hub.
2016-01-27 08:34:14 +00:00
For more details about this component, please refer to the documentation at
2016-02-02 23:23:59 +00:00
https://home-assistant.io/components/insteon_hub/
2016-01-27 08:25:44 +00:00
"""
2016-01-19 13:10:17 +00:00
import logging
2016-02-19 05:27:50 +00:00
from homeassistant.const import CONF_API_KEY, CONF_PASSWORD, CONF_USERNAME
from homeassistant.helpers import validate_config, discovery
2016-01-19 13:10:17 +00:00
2016-01-29 05:37:08 +00:00
DOMAIN = "insteon_hub"
2016-01-27 08:25:44 +00:00
REQUIREMENTS = ['insteon_hub==0.4.5']
2016-01-19 13:10:17 +00:00
INSTEON = None
_LOGGER = logging.getLogger(__name__)
def setup(hass, config):
2016-03-08 16:55:57 +00:00
"""Setup Insteon Hub component.
2016-01-19 13:10:17 +00:00
This will automatically import associated lights.
"""
if not validate_config(
config,
{DOMAIN: [CONF_USERNAME, CONF_PASSWORD, CONF_API_KEY]},
2016-01-19 13:10:17 +00:00
_LOGGER):
return False
2016-01-29 02:35:04 +00:00
import insteon
username = config[DOMAIN][CONF_USERNAME]
2016-01-19 13:10:17 +00:00
password = config[DOMAIN][CONF_PASSWORD]
api_key = config[DOMAIN][CONF_API_KEY]
2016-01-19 13:10:17 +00:00
global INSTEON
INSTEON = insteon.Insteon(username, password, api_key)
2016-01-19 13:10:17 +00:00
if INSTEON is None:
_LOGGER.error("Could not connect to Insteon service.")
return
2016-06-20 03:53:45 +00:00
discovery.load_platform(hass, 'light', DOMAIN, {}, config)
2016-01-19 13:10:17 +00:00
return True