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>
This commit is contained in:
parent
7a5990072c
commit
4879b7198e
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue