wasp: clock: Tweak the greying of the high order digits

This commit is contained in:
Daniel Thompson 2020-02-04 08:48:13 +00:00
parent be6c6b02b0
commit 2d0df5aed5

View file

@ -38,9 +38,9 @@ class ClockApp(object):
display = watch.display
display.rleblit(DIGITS[now[1] % 10], pos=(4*48, 80))
display.rleblit(DIGITS[now[1] // 10], pos=(3*48, 80), fg=0xc638)
display.rleblit(DIGITS[now[1] // 10], pos=(3*48, 80), fg=0xbdb6)
display.rleblit(DIGITS[now[0] % 10], pos=(1*48, 80))
display.rleblit(DIGITS[now[0] // 10], pos=(0*48, 80), fg=0xc638)
display.rleblit(DIGITS[now[0] // 10], pos=(0*48, 80), fg=0xbdb6)
self.on_screen = now
self.meter.update()