Create ecobee weather platform (#10869)
* Create ecobee weather component * Update requirements_all for ecobee * Fix missed lint issue
This commit is contained in:
parent
7b452208b6
commit
606fa34792
3 changed files with 149 additions and 2 deletions
|
@ -16,7 +16,7 @@ from homeassistant.const import CONF_API_KEY
|
|||
from homeassistant.util import Throttle
|
||||
from homeassistant.util.json import save_json
|
||||
|
||||
REQUIREMENTS = ['python-ecobee-api==0.0.11']
|
||||
REQUIREMENTS = ['python-ecobee-api==0.0.12']
|
||||
|
||||
_CONFIGURING = {}
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
|
@ -82,6 +82,7 @@ def setup_ecobee(hass, network, config):
|
|||
hass, 'climate', DOMAIN, {'hold_temp': hold_temp}, config)
|
||||
discovery.load_platform(hass, 'sensor', DOMAIN, {}, config)
|
||||
discovery.load_platform(hass, 'binary_sensor', DOMAIN, {}, config)
|
||||
discovery.load_platform(hass, 'weather', DOMAIN, {}, config)
|
||||
|
||||
|
||||
class EcobeeData(object):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue