diff options
| author | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-06-22 21:51:06 (GMT) |
|---|---|---|
| committer | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-06-22 21:51:06 (GMT) |
| commit | 88418fd1b50200642f68bd04a48f2e4094b289f7 (patch) | |
| tree | b48071a50edb71f55f1870437c48962d17896495 /wasp/wasp.py | |
| parent | 417e408dc4821012d4b34a2bee28338cfc0b4295 (diff) | |
apps: heart: Introduce simple app for the heart rate sensor
The heart rate analysis step is still a work in progress but the current
app allows us to visualize the the results of the signal conditioning.
Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
Diffstat (limited to 'wasp/wasp.py')
| -rw-r--r-- | wasp/wasp.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/wasp/wasp.py b/wasp/wasp.py index c4a565c..092ad29 100644 --- a/wasp/wasp.py +++ b/wasp/wasp.py @@ -22,6 +22,7 @@ import widgets from apps.clock import ClockApp from apps.flashlight import FlashlightApp +from apps.heart import HeartApp from apps.launcher import LauncherApp from apps.pager import PagerApp, CrashApp from apps.settings import SettingsApp @@ -108,8 +109,9 @@ class Manager(): # TODO: Eventually these should move to main.py self.register(ClockApp(), True) - self.register(StopwatchApp(), True) self.register(StepCounterApp(), True) + self.register(StopwatchApp(), True) + self.register(HeartApp(), True) self.register(FlashlightApp(), False) self.register(SettingsApp(), False) self.register(TestApp(), False) |
