summaryrefslogtreecommitdiff
path: root/wasp/boot.py
diff options
context:
space:
mode:
authorDaniel Thompson <daniel@redfelineninja.org.uk>2020-02-03 19:24:09 (GMT)
committerDaniel Thompson <daniel@redfelineninja.org.uk>2020-02-03 19:26:08 (GMT)
commit3892f07e62fcbbac128401f183bec66361f08db1 (patch)
tree877ebbb5d856c8a3539417872f148932fedae75d /wasp/boot.py
parentfc74f7e37b3db9024d6cecf9fabdddf602b88b3c (diff)
wasp: Add simple clock app
At this point both the simulator and a PineTime will come up and show a clock (although in the case of the PineTime the clock will just come up at 12:00).
Diffstat (limited to 'wasp/boot.py')
-rw-r--r--wasp/boot.py11
1 files changed, 2 insertions, 9 deletions
diff --git a/wasp/boot.py b/wasp/boot.py
index 49ff56b..baed941 100644
--- a/wasp/boot.py
+++ b/wasp/boot.py
@@ -1,10 +1,3 @@
-import logo
+import manager
import watch
-import time
-
-# Splash screen
-watch.display.rleblit(logo.pine64, fg=0xffff)
-
-time.sleep(5)
-watch.backlight.set(0)
-watch.display.poweroff()
+wasp = manager.Manager(watch)