From 4879b7198eaa34e7f721a8a27f1650f5cac63b44 Mon Sep 17 00:00:00 2001 From: Daniel Thompson Date: Mon, 1 Mar 2021 20:03:07 +0000 Subject: [PATCH] apps: steps: Reduce the graphing scale Currently then even fast walking will run off the top of the graph. Change the scale to that fast walking shows in full. I think at this level fast running will probably run off the top but I need to gather a few more details before settling on the final scale. Signed-off-by: Daniel Thompson --- wasp/apps/steps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wasp/apps/steps.py b/wasp/apps/steps.py index 451edd2..021db38 100644 --- a/wasp/apps/steps.py +++ b/wasp/apps/steps.py @@ -168,7 +168,7 @@ class StepCounterApp(): # TODO: the x < 2 conceals BUGZ continue total += d - d = d // 3 + d = d // 4 if d > 200: draw.fill(0xffff, x, 239-200, 1, 200) else: