* working mycroft notification platform * Update mycroft.py * Update mycroft.py * Update mycroft.py * Update mycroft.py * updating to use new api updating code to use new api. * updating changes updating files * updating typos fixing some typos * Update mycroft.py adding text * fixing pep issues fixing pep issues * adding new mycroft component adding mycroft component * updating updating code * updating typo fixing typo * updating file adding updates * updating notify updating notify component for new changes * Update mycroft.py * Update mycroft.py * Update mycroft.py * updating for tox updating to pass tox tests * updating for tox fixing tox errors * fixing tox issues fixing tox issues * fixing tox issues fixing more tox issues * updating requirement adding requirement for component * fixed typo fixed typo * updating requirements updating requirements * updating code updating code * updating files updating * updating * adding logging adding in logging * fixing typo fixing typo * updating debugs * updating files updating files * updating dependencies updating dependencies * updating to load notification updating to load notification * cleaning up whitespace * updating requirements_all.txt * adding requirement adding requirement * Update mycroft.py * Update .coveragerc updated .coveragerc
35 lines
763 B
Python
35 lines
763 B
Python
"""
|
|
Support for Mycroft AI.
|
|
|
|
For more details about this component, please refer to the documentation at
|
|
https://home-assistant.io/components/mycroft
|
|
"""
|
|
|
|
import logging
|
|
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.const import CONF_HOST
|
|
from homeassistant.helpers import discovery
|
|
import homeassistant.helpers.config_validation as cv
|
|
|
|
REQUIREMENTS = ['mycroftapi==0.1.2']
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
DOMAIN = 'mycroft'
|
|
|
|
|
|
CONFIG_SCHEMA = vol.Schema({
|
|
DOMAIN: vol.Schema({
|
|
vol.Required(CONF_HOST): cv.string
|
|
})
|
|
}, extra=vol.ALLOW_EXTRA)
|
|
|
|
|
|
def setup(hass, config):
|
|
"""Set up the Mycroft component."""
|
|
hass.data[DOMAIN] = config[DOMAIN][CONF_HOST]
|
|
discovery.load_platform(hass, 'notify', DOMAIN, {}, config)
|
|
return True
|