Skip to content

Instantly share code, notes, and snippets.

View martinwithaar's full-sized avatar

Martin Withaar martinwithaar

View GitHub Profile
@martinwithaar
martinwithaar / led_display.py
Last active November 8, 2021 17:21
LAB: A LED Display
A = '###'
L = '# '
R = ' #'
D = '# #'
digits = (
(A, D, D, D, A),
(R, R, R, R, R),
(A, R, A, L, A),
(A, R, A, R, A),