diff options
Diffstat (limited to 'wasp/apps/testapp.py')
| -rw-r--r-- | wasp/apps/testapp.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/wasp/apps/testapp.py b/wasp/apps/testapp.py index 8c15848..478249f 100644 --- a/wasp/apps/testapp.py +++ b/wasp/apps/testapp.py @@ -3,10 +3,13 @@ import machine import wasp +import icons class TestApp(): """Simple test application. """ + NAME = 'Self Test' + ICON = icons.app def __init__(self): self.tests = ('Touch', 'String', 'Button', 'Crash') @@ -57,6 +60,7 @@ class TestApp(): def benchmark_string(self): draw = wasp.watch.drawable draw.fill(0, 0, 30, 240, 240-30) + self.scroll.draw() t = machine.Timer(id=1, period=8000000) t.start() draw.string("The quick brown", 12, 24+24) |
