summaryrefslogtreecommitdiff
path: root/wasp/wasp.py
diff options
context:
space:
mode:
authorDaniel Thompson <daniel@redfelineninja.org.uk>2020-06-09 20:29:00 (GMT)
committerDaniel Thompson <daniel@redfelineninja.org.uk>2020-06-09 20:31:55 (GMT)
commitccaf12750ba39fe0bc1fa6d2425ef2d1831ded9a (patch)
tree4a34126a5afa06c1178527a9e9268396b17811db /wasp/wasp.py
parentdea2ba8d65f03c6c203f58d5db4bfdccda6f7c25 (diff)
wasp: apps: Step counter application
Currently there's no fancy algorithms to estimate stride length. Just pure simple step counting directly from the hardware's "intelligence engine". Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
Diffstat (limited to 'wasp/wasp.py')
-rw-r--r--wasp/wasp.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/wasp/wasp.py b/wasp/wasp.py
index 8f09a9a..b94bef5 100644
--- a/wasp/wasp.py
+++ b/wasp/wasp.py
@@ -25,6 +25,7 @@ from apps.flashlight import FlashlightApp
from apps.launcher import LauncherApp
from apps.pager import PagerApp, CrashApp
from apps.settings import SettingsApp
+from apps.steps import StepCounterApp
from apps.stopwatch import StopwatchApp
from apps.testapp import TestApp
@@ -108,6 +109,7 @@ class Manager():
# TODO: Eventually these should move to main.py
self.register(ClockApp(), True)
self.register(StopwatchApp(), True)
+ self.register(StepCounterApp(), True)
self.register(FlashlightApp(), False)
self.register(SettingsApp(), False)
self.register(TestApp(), False)