2020-03-22 16:40:18 +01:00
|
|
|
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
# Copyright (C) 2020 Daniel Thompson
|
|
|
|
|
2020-03-08 22:22:54 +01:00
|
|
|
import machine
|
2020-03-22 13:37:19 +01:00
|
|
|
import wasp
|
2020-03-08 11:18:08 +01:00
|
|
|
|
2020-03-08 21:48:48 +01:00
|
|
|
class TestApp():
|
|
|
|
"""Simple test application.
|
2020-03-08 11:18:08 +01:00
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self):
|
2020-04-05 10:46:25 +02:00
|
|
|
self.tests = ('Touch', 'String', 'Button', 'Crash')
|
2020-03-08 21:48:48 +01:00
|
|
|
self.test = self.tests[0]
|
2020-04-05 10:48:03 +02:00
|
|
|
self.scroll = wasp.widgets.ScrollIndicator()
|
2020-03-08 11:18:08 +01:00
|
|
|
|
2020-03-28 18:19:34 +01:00
|
|
|
def foreground(self):
|
2020-03-08 11:18:08 +01:00
|
|
|
"""Activate the application."""
|
|
|
|
self.on_screen = ( -1, -1, -1, -1, -1, -1 )
|
2020-03-28 18:19:34 +01:00
|
|
|
self.draw()
|
2020-03-27 21:09:28 +01:00
|
|
|
wasp.system.request_event(wasp.EventMask.TOUCH |
|
2020-03-28 18:27:09 +01:00
|
|
|
wasp.EventMask.SWIPE_UPDOWN |
|
|
|
|
wasp.EventMask.BUTTON)
|
2020-03-08 11:18:08 +01:00
|
|
|
|
2020-03-28 18:27:09 +01:00
|
|
|
def press(self, button, state):
|
|
|
|
draw = wasp.watch.drawable
|
|
|
|
if self.test == 'Touch':
|
|
|
|
draw.string('Button', 0, 108, width=240)
|
|
|
|
if self.test == 'String':
|
|
|
|
self.benchmark_string()
|
|
|
|
elif self.test == 'Button':
|
|
|
|
draw.string('{}: {}'.format(button, state), 0, 108, width=240)
|
2020-04-05 10:46:25 +02:00
|
|
|
elif self.test == 'Crash':
|
|
|
|
self.crash()
|
2020-03-28 18:27:09 +01:00
|
|
|
|
2020-03-08 21:48:48 +01:00
|
|
|
def swipe(self, event):
|
|
|
|
tests = self.tests
|
2020-03-28 18:27:09 +01:00
|
|
|
i = tests.index(self.test)
|
|
|
|
|
|
|
|
if event[0] == wasp.EventType.UP:
|
|
|
|
i += 1
|
|
|
|
if i >= len(tests):
|
|
|
|
i = 0
|
|
|
|
else:
|
|
|
|
i -= 1
|
|
|
|
if i < 0:
|
|
|
|
i = len(tests) - 1
|
2020-03-08 21:48:48 +01:00
|
|
|
self.test = tests[i]
|
|
|
|
self.draw()
|
|
|
|
|
2020-03-08 11:18:08 +01:00
|
|
|
def touch(self, event):
|
2020-03-08 21:48:48 +01:00
|
|
|
if self.test == 'Touch':
|
2020-03-28 18:27:09 +01:00
|
|
|
wasp.watch.drawable.string('({}, {})'.format(
|
|
|
|
event[1], event[2]), 0, 108, width=240)
|
2020-03-08 21:48:48 +01:00
|
|
|
elif self.test == 'String':
|
2020-03-28 18:27:09 +01:00
|
|
|
self.benchmark_string()
|
2020-03-08 21:48:48 +01:00
|
|
|
|
2020-03-28 18:27:09 +01:00
|
|
|
def benchmark_string(self):
|
|
|
|
draw = wasp.watch.drawable
|
|
|
|
draw.fill(0, 0, 30, 240, 240-30)
|
|
|
|
t = machine.Timer(id=1, period=8000000)
|
|
|
|
t.start()
|
|
|
|
draw.string("The quick brown", 12, 24+24)
|
|
|
|
draw.string("fox jumped over", 12, 24+48)
|
|
|
|
draw.string("the lazy dog.", 12, 24+72)
|
|
|
|
draw.string("0123456789", 12, 24+120)
|
|
|
|
draw.string('!"£$%^&*()', 12, 24+144)
|
|
|
|
elapsed = t.time()
|
|
|
|
t.stop()
|
|
|
|
del t
|
|
|
|
draw.string('{}s'.format(elapsed / 1000000), 12, 24+192)
|
2020-03-08 11:18:08 +01:00
|
|
|
|
2020-03-28 18:19:34 +01:00
|
|
|
def draw(self):
|
2020-03-08 11:18:08 +01:00
|
|
|
"""Redraw the display from scratch."""
|
2020-03-22 13:37:19 +01:00
|
|
|
wasp.watch.display.mute(True)
|
2020-04-05 10:46:25 +02:00
|
|
|
draw = wasp.watch.drawable
|
|
|
|
draw.fill()
|
|
|
|
draw.string('{} test'.format(self.test),
|
2020-03-08 21:48:48 +01:00
|
|
|
0, 6, width=240)
|
2020-04-05 10:48:03 +02:00
|
|
|
self.scroll.draw()
|
2020-04-05 10:46:25 +02:00
|
|
|
|
|
|
|
if self.test == 'Crash':
|
|
|
|
draw.string("Press button to", 12, 24+24)
|
|
|
|
draw.string("throw exception.", 12, 24+48)
|
|
|
|
|
2020-03-22 13:37:19 +01:00
|
|
|
wasp.watch.display.mute(False)
|