from max7219_matrix import Max7219
import utime
display = Max7219(8,8,rotate_180=False) # width=8 height=8 LED Matrix ขนาด 8 x 8
display.brightness(5) # ค่าความสว่าง 0 ถึง 15
while True:
for i in range(0,10):
display.fill(0) # ล้างหน้าจอ
display.text(str(i),0,0)
display.show()
utime.sleep(1)