2020-03-22 16:40:18 +01:00
|
|
|
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
# Copyright (C) 2020 Daniel Thompson
|
2020-03-26 22:46:10 +01:00
|
|
|
"""WASP system management (including constants)
|
|
|
|
|
|
|
|
.. data:: system = Manager()
|
|
|
|
|
|
|
|
system is the system-wide instance of the Manager class. Applications
|
|
|
|
can use this instance to access system services.
|
|
|
|
"""
|
2020-03-22 16:40:18 +01:00
|
|
|
|
2020-02-03 20:24:09 +01:00
|
|
|
import gc
|
|
|
|
import machine
|
2020-03-22 13:37:19 +01:00
|
|
|
import watch
|
|
|
|
import widgets
|
2020-02-03 20:24:09 +01:00
|
|
|
|
2020-03-08 18:37:43 +01:00
|
|
|
from apps.clock import ClockApp
|
|
|
|
from apps.flashlight import FlashlightApp
|
2020-03-08 21:48:48 +01:00
|
|
|
from apps.testapp import TestApp
|
2020-03-08 18:37:43 +01:00
|
|
|
|
2020-03-26 21:42:03 +01:00
|
|
|
class Direction():
|
2020-03-26 22:46:10 +01:00
|
|
|
"""Enumerated directions.
|
|
|
|
|
|
|
|
MicroPython does not implement the enum module so Direction
|
|
|
|
is simply a regular object which acts as a namespace.
|
|
|
|
"""
|
2020-03-26 21:42:03 +01:00
|
|
|
DOWN = 1
|
|
|
|
UP = 2
|
|
|
|
LEFT = 3
|
|
|
|
RIGHT = 4
|
|
|
|
|
|
|
|
class Event():
|
2020-03-26 22:46:10 +01:00
|
|
|
"""Enumerated event types
|
|
|
|
"""
|
2020-03-26 21:42:03 +01:00
|
|
|
TOUCH = 0x0001
|
|
|
|
SWIPE_LEFTRIGHT = 0x0002
|
|
|
|
SWIPE_UPDOWN = 0x0004
|
|
|
|
BUTTON = 0x0008
|
|
|
|
|
|
|
|
class Manager():
|
2020-03-26 22:46:10 +01:00
|
|
|
"""WASP system manager
|
|
|
|
|
|
|
|
The manager is responsible for handling top-level UI events and
|
|
|
|
dispatching them to the foreground application. It also provides
|
|
|
|
services to the application.
|
|
|
|
|
|
|
|
The manager is expected to have a single system-wide instance
|
|
|
|
which can be accessed via :py:data:`wasp.system` .
|
|
|
|
"""
|
|
|
|
|
2020-03-22 13:37:19 +01:00
|
|
|
def __init__(self):
|
2020-03-07 12:52:42 +01:00
|
|
|
self.app = None
|
2020-03-08 11:18:08 +01:00
|
|
|
|
|
|
|
self.applications = [
|
2020-03-08 18:37:43 +01:00
|
|
|
ClockApp(),
|
|
|
|
FlashlightApp(),
|
2020-03-08 21:48:48 +01:00
|
|
|
TestApp()
|
2020-03-08 11:18:08 +01:00
|
|
|
]
|
2020-02-04 09:49:10 +01:00
|
|
|
self.charging = True
|
2020-02-03 20:24:09 +01:00
|
|
|
|
2020-03-26 23:12:05 +01:00
|
|
|
self._brightness = 2
|
|
|
|
|
|
|
|
@property
|
|
|
|
def brightness(self):
|
|
|
|
"""Cached copy of the brightness current written to the hardware."""
|
|
|
|
return self._brightness
|
|
|
|
|
|
|
|
@brightness.setter
|
|
|
|
def brightness(self, value):
|
|
|
|
self._brightness = value
|
|
|
|
watch.backlight.set(self._brightness)
|
|
|
|
|
2020-02-03 20:24:09 +01:00
|
|
|
def switch(self, app):
|
2020-03-26 22:46:10 +01:00
|
|
|
"""Switch to the requested application.
|
|
|
|
"""
|
2020-03-07 12:52:42 +01:00
|
|
|
if self.app:
|
2020-03-08 11:18:08 +01:00
|
|
|
self.app.background()
|
2020-03-22 13:37:19 +01:00
|
|
|
else:
|
|
|
|
# System start up...
|
|
|
|
watch.display.poweron()
|
|
|
|
watch.display.mute(True)
|
2020-03-26 23:12:05 +01:00
|
|
|
watch.backlight.set(self._brightness)
|
2020-03-22 13:37:19 +01:00
|
|
|
self.sleep_at = watch.rtc.uptime + 90
|
2020-03-07 12:52:42 +01:00
|
|
|
|
|
|
|
# Clear out any configuration from the old application
|
2020-03-08 11:18:08 +01:00
|
|
|
self.event_mask = 0
|
2020-03-07 12:52:42 +01:00
|
|
|
self.tick_period_ms = 0
|
|
|
|
self.tick_expiry = None
|
|
|
|
|
2020-02-03 20:24:09 +01:00
|
|
|
self.app = app
|
2020-03-22 13:37:19 +01:00
|
|
|
watch.display.mute(True)
|
|
|
|
app.foreground()
|
|
|
|
watch.display.mute(False)
|
2020-03-07 12:52:42 +01:00
|
|
|
|
2020-03-08 11:18:08 +01:00
|
|
|
def navigate(self, direction=None):
|
2020-03-26 22:46:10 +01:00
|
|
|
"""Navigate to a new application.
|
|
|
|
|
|
|
|
Left/right navigation is used to switch between applications in the
|
|
|
|
quick application ring. Applications on the ring are not permitted
|
|
|
|
to subscribe to :py:data`Event.SWIPE_LEFTRIGHT` events.
|
2020-03-08 11:18:08 +01:00
|
|
|
|
2020-03-26 22:46:10 +01:00
|
|
|
:param int direction: The direction of the navigation
|
2020-03-08 11:18:08 +01:00
|
|
|
"""
|
|
|
|
app_list = self.applications
|
|
|
|
|
2020-03-26 21:42:03 +01:00
|
|
|
if direction == Direction.LEFT:
|
2020-03-08 11:18:08 +01:00
|
|
|
i = app_list.index(self.app) + 1
|
|
|
|
if i >= len(app_list):
|
|
|
|
i = 0
|
|
|
|
self.switch(app_list[i])
|
2020-03-26 21:42:03 +01:00
|
|
|
elif direction == Direction.RIGHT:
|
2020-03-08 11:18:08 +01:00
|
|
|
i = app_list.index(self.app) - 1
|
|
|
|
if i < 0:
|
|
|
|
i = len(app_list)-1
|
|
|
|
self.switch(app_list[i])
|
|
|
|
|
|
|
|
def request_event(self, event_mask):
|
2020-03-26 22:46:10 +01:00
|
|
|
"""Subscribe to events.
|
|
|
|
|
|
|
|
:param int event_mask: The set of events to subscribe to.
|
|
|
|
"""
|
2020-03-08 11:18:08 +01:00
|
|
|
self.event_mask |= event_mask
|
|
|
|
|
2020-03-07 12:52:42 +01:00
|
|
|
def request_tick(self, period_ms=None):
|
|
|
|
"""Request (and subscribe to) a periodic tick event.
|
|
|
|
|
|
|
|
Note: With the current simplistic timer implementation sub-second
|
|
|
|
tick intervals are not possible.
|
|
|
|
"""
|
|
|
|
self.tick_period_ms = period_ms
|
2020-03-22 13:37:19 +01:00
|
|
|
self.tick_expiry = watch.rtc.get_uptime_ms() + period_ms
|
2020-02-03 20:24:09 +01:00
|
|
|
|
2020-03-26 23:12:05 +01:00
|
|
|
def keep_awake(self):
|
|
|
|
"""Reset the keep awake timer."""
|
|
|
|
self.sleep_at = watch.rtc.uptime + 15
|
|
|
|
|
2020-03-27 21:07:47 +01:00
|
|
|
def sleep(self):
|
|
|
|
"""Enter the deepest sleep state possible.
|
|
|
|
"""
|
|
|
|
watch.backlight.set(0)
|
|
|
|
if not self.app.sleep():
|
|
|
|
self.switch(self.applications[0])
|
|
|
|
self.app.sleep()
|
|
|
|
watch.display.poweroff()
|
|
|
|
self.charging = watch.battery.charging()
|
|
|
|
self.sleep_at = None
|
|
|
|
|
|
|
|
def wake(self):
|
|
|
|
"""Return to a running state.
|
|
|
|
"""
|
|
|
|
watch.display.poweron()
|
|
|
|
self.app.wake()
|
|
|
|
watch.backlight.set(self._brightness)
|
|
|
|
|
|
|
|
# Discard any pending touch events
|
|
|
|
_ = watch.touch.get_event()
|
|
|
|
|
|
|
|
self.keep_awake()
|
|
|
|
|
2020-03-26 22:46:10 +01:00
|
|
|
def _handle_event(self, event):
|
|
|
|
"""Process an event.
|
|
|
|
"""
|
2020-03-27 21:07:47 +01:00
|
|
|
self.keep_awake()
|
2020-03-08 11:18:08 +01:00
|
|
|
|
2020-03-08 21:48:48 +01:00
|
|
|
event_mask = self.event_mask
|
2020-03-08 11:18:08 +01:00
|
|
|
if event[0] < 5:
|
2020-03-08 21:48:48 +01:00
|
|
|
updown = event[0] == 1 or event[0] == 2
|
2020-03-26 21:42:03 +01:00
|
|
|
if (bool(event_mask & Event.SWIPE_UPDOWN) and updown) or \
|
|
|
|
(bool(event_mask & Event.SWIPE_LEFTRIGHT) and not updown):
|
2020-03-08 21:48:48 +01:00
|
|
|
if not self.app.swipe(event):
|
|
|
|
self.navigate(event[0])
|
|
|
|
else:
|
|
|
|
self.navigate(event[0])
|
2020-03-26 21:42:03 +01:00
|
|
|
elif event[0] == 5 and self.event_mask & Event.TOUCH:
|
2020-03-08 11:18:08 +01:00
|
|
|
self.app.touch(event)
|
|
|
|
|
2020-03-26 22:46:10 +01:00
|
|
|
def _tick(self):
|
|
|
|
"""Handle the system tick.
|
|
|
|
|
|
|
|
This function may be called frequently and includes short
|
|
|
|
circuit logic to quickly exit if we haven't reached a tick
|
|
|
|
expiry point.
|
|
|
|
"""
|
2020-03-22 13:37:19 +01:00
|
|
|
rtc = watch.rtc
|
2020-03-07 12:52:42 +01:00
|
|
|
|
2020-02-03 20:24:09 +01:00
|
|
|
if self.sleep_at:
|
2020-03-07 12:52:42 +01:00
|
|
|
if rtc.update() and self.tick_expiry:
|
|
|
|
now = rtc.get_uptime_ms()
|
|
|
|
|
|
|
|
if self.tick_expiry <= now:
|
|
|
|
ticks = 0
|
|
|
|
while self.tick_expiry <= now:
|
|
|
|
self.tick_expiry += self.tick_period_ms
|
|
|
|
ticks += 1
|
|
|
|
self.app.tick(ticks)
|
2020-02-03 20:24:09 +01:00
|
|
|
|
2020-03-22 13:37:19 +01:00
|
|
|
if watch.button.value():
|
2020-03-26 23:12:05 +01:00
|
|
|
self.keep_awake()
|
2020-02-03 20:24:09 +01:00
|
|
|
|
2020-03-22 13:37:19 +01:00
|
|
|
event = watch.touch.get_event()
|
2020-03-08 11:18:08 +01:00
|
|
|
if event:
|
2020-03-26 22:46:10 +01:00
|
|
|
self._handle_event(event)
|
2020-03-08 11:18:08 +01:00
|
|
|
|
2020-03-22 13:37:19 +01:00
|
|
|
if watch.rtc.uptime > self.sleep_at:
|
2020-03-27 21:07:47 +01:00
|
|
|
self.sleep()
|
2020-02-03 23:45:12 +01:00
|
|
|
|
|
|
|
gc.collect()
|
2020-02-03 20:24:09 +01:00
|
|
|
else:
|
2020-03-22 13:37:19 +01:00
|
|
|
watch.rtc.update()
|
2020-02-03 20:24:09 +01:00
|
|
|
|
2020-03-22 13:37:19 +01:00
|
|
|
charging = watch.battery.charging()
|
|
|
|
if watch.button.value() or self.charging != charging:
|
2020-03-27 21:07:47 +01:00
|
|
|
self.wake()
|
2020-02-03 20:24:09 +01:00
|
|
|
|
|
|
|
def run(self):
|
2020-03-08 11:18:08 +01:00
|
|
|
"""Run the system manager synchronously.
|
|
|
|
|
|
|
|
This allows all watch management activities to handle in the
|
|
|
|
normal execution context meaning any exceptions and other problems
|
|
|
|
can be observed interactively via the console.
|
|
|
|
"""
|
2020-03-22 13:37:19 +01:00
|
|
|
if not self.app:
|
|
|
|
self.switch(self.applications[0])
|
|
|
|
|
2020-03-26 22:46:10 +01:00
|
|
|
# Reminder: wasptool uses this string to confirm the device has
|
|
|
|
# been set running again.
|
2020-03-22 13:37:19 +01:00
|
|
|
print('Watch is running, use Ctrl-C to stop')
|
|
|
|
|
2020-02-03 20:24:09 +01:00
|
|
|
while True:
|
2020-03-26 22:46:10 +01:00
|
|
|
self._tick()
|
|
|
|
# Currently there is no code to control how fast the system
|
|
|
|
# ticks. In other words this code will break if we improve the
|
|
|
|
# power management... we are currently relying on no being able
|
|
|
|
# to stay in the low-power state for very long.
|
2020-02-03 20:24:09 +01:00
|
|
|
machine.deepsleep()
|
2020-03-22 13:37:19 +01:00
|
|
|
|
|
|
|
system = Manager()
|