57 lines
1.4 KiB
Python
57 lines
1.4 KiB
Python
|
"""
|
||
|
Support for Spider Smart devices.
|
||
|
|
||
|
For more details about this component, please refer to the documentation at
|
||
|
https://home-assistant.io/components/spider/
|
||
|
"""
|
||
|
import logging
|
||
|
|
||
|
import voluptuous as vol
|
||
|
|
||
|
from homeassistant.const import CONF_PASSWORD, CONF_USERNAME
|
||
|
import homeassistant.helpers.config_validation as cv
|
||
|
from homeassistant.helpers.discovery import load_platform
|
||
|
|
||
|
REQUIREMENTS = ['spiderpy==1.0.7']
|
||
|
|
||
|
_LOGGER = logging.getLogger(__name__)
|
||
|
|
||
|
DOMAIN = 'spider'
|
||
|
|
||
|
SPIDER_COMPONENTS = [
|
||
|
'climate'
|
||
|
]
|
||
|
|
||
|
CONFIG_SCHEMA = vol.Schema({
|
||
|
DOMAIN: vol.Schema({
|
||
|
vol.Required(CONF_PASSWORD): cv.string,
|
||
|
vol.Required(CONF_USERNAME): cv.string,
|
||
|
})
|
||
|
}, extra=vol.ALLOW_EXTRA)
|
||
|
|
||
|
|
||
|
def setup(hass, config):
|
||
|
"""Set up Spider Component."""
|
||
|
from spiderpy.spiderapi import SpiderApi
|
||
|
from spiderpy.spiderapi import UnauthorizedException
|
||
|
|
||
|
username = config[DOMAIN][CONF_USERNAME]
|
||
|
password = config[DOMAIN][CONF_PASSWORD]
|
||
|
|
||
|
try:
|
||
|
api = SpiderApi(username, password)
|
||
|
|
||
|
hass.data[DOMAIN] = {
|
||
|
'controller': api,
|
||
|
'thermostats': api.get_thermostats()
|
||
|
}
|
||
|
|
||
|
for component in SPIDER_COMPONENTS:
|
||
|
load_platform(hass, component, DOMAIN, {})
|
||
|
|
||
|
_LOGGER.debug("Connection with Spider API succeeded")
|
||
|
return True
|
||
|
except UnauthorizedException:
|
||
|
_LOGGER.error("Can't connect to the Spider API")
|
||
|
return False
|