diff options
| author | Daniel Thompson <daniel@redfelineninja.org.uk> | 2021-03-01 20:03:07 (GMT) |
|---|---|---|
| committer | Daniel Thompson <daniel@redfelineninja.org.uk> | 2021-03-01 20:03:07 (GMT) |
| commit | 4879b7198eaa34e7f721a8a27f1650f5cac63b44 (patch) | |
| tree | edb7feb83b23c41f22384d7fb4099c632b27371c | |
| parent | 7a5990072c230e35eb990377ddce608706cb0a0e (diff) | |
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 <daniel@redfelineninja.org.uk>
| -rw-r--r-- | wasp/apps/steps.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |
