diff options
Diffstat (limited to 'wasp/wasp.py')
| -rw-r--r-- | wasp/wasp.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/wasp/wasp.py b/wasp/wasp.py index abcb974..5b1a8b8 100644 --- a/wasp/wasp.py +++ b/wasp/wasp.py @@ -117,6 +117,7 @@ class Manager(): self.notifications = {} self.musicstate = {} self.musicinfo = {} + self.weatherinfo = {} self._theme = ( b'\x7b\xef' # ble @@ -320,6 +321,9 @@ class Manager(): def set_music_info(self, info): self.musicinfo = info + def set_weather_info(self, info): + self.weatherinfo = info + def set_alarm(self, time, action): """Queue an alarm. |
