76 lines
2.4 KiB
Python
76 lines
2.4 KiB
Python
# Copyright 2016 Mycroft AI, Inc.
|
|
#
|
|
# This file is part of Mycroft Core.
|
|
#
|
|
# Mycroft Core is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Mycroft Core is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Mycroft Core. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
from mycroft.util.log import getLogger
|
|
|
|
__author__ = 'iward'
|
|
|
|
LOGGER = getLogger(__name__)
|
|
|
|
|
|
class EnclosureWeather:
|
|
"""
|
|
Listens for Enclosure API commands to display indicators of the weather.
|
|
|
|
Performs the associated command on Arduino by writing on the Serial port.
|
|
"""
|
|
|
|
def __init__(self, ws, writer):
|
|
self.ws = ws
|
|
self.writer = writer
|
|
self.__init_events()
|
|
|
|
def __init_events(self):
|
|
self.ws.on('enclosure.weather.display', self.display)
|
|
|
|
def display(self, event=None):
|
|
if event and event.data:
|
|
# Convert img_code to icon
|
|
img_code = event.data.get("img_code", None)
|
|
icon = None
|
|
if img_code == 0:
|
|
# sunny
|
|
icon = "IICEIBMDNLMDIBCEAA"
|
|
elif img_code == 1:
|
|
# partly cloudy
|
|
icon = "IIEEGBGDHLHDHBGEEA"
|
|
elif img_code == 2:
|
|
# cloudy
|
|
icon = "IIIBMDMDODODODMDIB"
|
|
elif img_code == 3:
|
|
# light rain
|
|
icon = "IIMAOJOFPBPJPFOBMA"
|
|
elif img_code == 4:
|
|
# raining
|
|
icon = "IIMIOFOBPFPDPJOFMA"
|
|
elif img_code == 5:
|
|
# storming
|
|
icon = "IIAAIIMEODLBJAAAAA"
|
|
elif img_code == 6:
|
|
# snowing
|
|
icon = "IIJEKCMBPHMBKCJEAA"
|
|
elif img_code == 7:
|
|
# wind/mist
|
|
icon = "IIABIBIBIJIJJGJAGA"
|
|
|
|
temp = event.data.get("temp", None)
|
|
if icon is not None and temp is not None:
|
|
icon = "x=2,"+icon
|
|
msg = "weather.display=" + str(temp) + "," + str(icon)
|
|
self.writer.write(msg)
|