|
@@ -30,14 +30,13 @@ while(1):
|
|
|
disp = [0]*38
|
|
|
for x in range(len(data)):
|
|
|
if x % 2 == 0:
|
|
|
- disp.append(data[x])
|
|
|
- if data[x+1] == None:
|
|
|
+ if data[x+1] != None:
|
|
|
+ disp.append(data[x])
|
|
|
disp.append(data[x+1])
|
|
|
- else:
|
|
|
- disp.append((data[x+1]).replace(',',''))
|
|
|
|
|
|
|
|
|
disp = list(filter(lambda a:a != 0, disp))
|
|
|
+ disp = list(filter(lambda a:a != None, disp))
|
|
|
|
|
|
|
|
|
|
|
@@ -45,7 +44,6 @@ while(1):
|
|
|
device = max7219(serial, cascaded=4 , block_orientation=-90, rotate=0)
|
|
|
|
|
|
for i in range(len(disp)):
|
|
|
- show_message(device, disp[i], fill="white", font=proportional(LCD_FONT),scroll_delay = 0.02)
|
|
|
-
|
|
|
+ show_message(device, disp[i], fill="white", font=proportional(LCD_FONT),scroll_delay = 0.04)
|
|
|
|
|
|
|