From 69a989b97ea038ddf7776e38426fae0c678470fd Mon Sep 17 00:00:00 2001 From: Daniel Thompson Date: Mon, 29 Mar 2021 22:17:27 +0100 Subject: [PATCH] apps: testapp: Force characters to render with a not-black background This helps pick up any problems with the glpyh rendering. Signed-off-by: Daniel Thompson --- wasp/apps/testapp.py | 1 + 1 file changed, 1 insertion(+) diff --git a/wasp/apps/testapp.py b/wasp/apps/testapp.py index 63fbf93..f4a9a0e 100644 --- a/wasp/apps/testapp.py +++ b/wasp/apps/testapp.py @@ -166,6 +166,7 @@ class TestApp(): def _benchmark_string(self): draw = wasp.watch.drawable draw.fill(0, 0, 30, 240, 240-30) + draw.set_color(0xffff, 0x4208) self.scroll.draw() t = machine.Timer(id=1, period=8000000) t.start()