summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Thompson <daniel@redfelineninja.org.uk>2020-03-08 21:31:17 (GMT)
committerDaniel Thompson <daniel@redfelineninja.org.uk>2020-03-08 21:31:17 (GMT)
commit24438ad05daae80c4d27c6e8d0345bfd61d5578b (patch)
treeaf8db5f70f4d120929dfc6b37f612214b052cee6
parentd236db68dc9526b17c89bc3e27d6fc50c8c45817 (diff)
testapp: Smoother transitions between tests
-rw-r--r--wasp/apps/testapp.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/wasp/apps/testapp.py b/wasp/apps/testapp.py
index b711722..7bbfc2c 100644
--- a/wasp/apps/testapp.py
+++ b/wasp/apps/testapp.py
@@ -58,6 +58,8 @@ class TestApp():
def draw(self, effect=None):
"""Redraw the display from scratch."""
+ watch.display.mute(True)
watch.display.fill(0)
self.drawable.string('{} test'.format(self.test),
0, 6, width=240)
+ watch.display.mute(False)