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

display.fill(0) # ล้างหน้าจอ
for i in range(8):
  for j in range(8):
    display.pixel(j,i,1) # j(col) i(row) เลข 1 ตัวสุดท้ายหมายถึงสั่งให้หลอดติดสว่าง
    display.show()
    utime.sleep(0.5)