Mycroft notify/component (#9173)
* 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
This commit is contained in:
parent
de48d42f33
commit
bd039b8c53
4 changed files with 80 additions and 0 deletions
|
@ -381,6 +381,7 @@ omit =
|
|||
homeassistant/components/media_player/vlc.py
|
||||
homeassistant/components/media_player/volumio.py
|
||||
homeassistant/components/media_player/yamaha.py
|
||||
homeassistant/components/mycroft.py
|
||||
homeassistant/components/notify/aws_lambda.py
|
||||
homeassistant/components/notify/aws_sns.py
|
||||
homeassistant/components/notify/aws_sqs.py
|
||||
|
@ -398,6 +399,7 @@ omit =
|
|||
homeassistant/components/notify/llamalab_automate.py
|
||||
homeassistant/components/notify/matrix.py
|
||||
homeassistant/components/notify/message_bird.py
|
||||
homeassistant/components/notify/mycroft.py
|
||||
homeassistant/components/notify/nfandroidtv.py
|
||||
homeassistant/components/notify/nma.py
|
||||
homeassistant/components/notify/prowl.py
|
||||
|
|
35
homeassistant/components/mycroft.py
Normal file
35
homeassistant/components/mycroft.py
Normal file
|
@ -0,0 +1,35 @@
|
|||
"""
|
||||
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
|
40
homeassistant/components/notify/mycroft.py
Normal file
40
homeassistant/components/notify/mycroft.py
Normal file
|
@ -0,0 +1,40 @@
|
|||
"""
|
||||
Mycroft AI notification platform.
|
||||
|
||||
For more details about this platform, please refer to the documentation at
|
||||
https://home-assistant.io/components/notify.mycroft/
|
||||
"""
|
||||
import logging
|
||||
|
||||
|
||||
from homeassistant.components.notify import BaseNotificationService
|
||||
|
||||
DEPENDENCIES = ['mycroft']
|
||||
|
||||
|
||||
_LOGGER = logging.getLogger(__name__)
|
||||
|
||||
|
||||
def get_service(hass, config, discovery_info=None):
|
||||
"""Get the Mycroft notification service."""
|
||||
return MycroftNotificationService(
|
||||
hass.data['mycroft'])
|
||||
|
||||
|
||||
class MycroftNotificationService(BaseNotificationService):
|
||||
"""The Mycroft Notification Service."""
|
||||
|
||||
def __init__(self, mycroft_ip):
|
||||
"""Initialize the service."""
|
||||
self.mycroft_ip = mycroft_ip
|
||||
|
||||
def send_message(self, message="", **kwargs):
|
||||
"""Send a message mycroft to speak on instance."""
|
||||
from mycroftapi import MycroftAPI
|
||||
|
||||
text = message
|
||||
mycroft = MycroftAPI(self.mycroft_ip)
|
||||
if mycroft is not None:
|
||||
mycroft.speak_text(text)
|
||||
else:
|
||||
_LOGGER.log("Could not reach this instance of mycroft")
|
|
@ -415,6 +415,9 @@ miniupnpc==1.9
|
|||
# homeassistant.components.tts
|
||||
mutagen==1.38
|
||||
|
||||
# homeassistant.components.mycroft
|
||||
mycroftapi==0.1.2
|
||||
|
||||
# homeassistant.components.usps
|
||||
myusps==1.1.3
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue