diff options
| author | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-03-08 21:31:17 (GMT) |
|---|---|---|
| committer | Daniel Thompson <daniel@redfelineninja.org.uk> | 2020-03-08 21:31:17 (GMT) |
| commit | 24438ad05daae80c4d27c6e8d0345bfd61d5578b (patch) | |
| tree | af8db5f70f4d120929dfc6b37f612214b052cee6 | |
| parent | d236db68dc9526b17c89bc3e27d6fc50c8c45817 (diff) | |
testapp: Smoother transitions between tests
| -rw-r--r-- | wasp/apps/testapp.py | 2 |
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) |
