from max7219_matrix import Max7219 # เรียกใช้งานโมดูลสำหรับควบคุม LED Matrix
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) # ล้างหน้าจอ
display.text("4",0,0) # x=0 (col) y=0 (row) ตำแหน่งการวางตัวอักษร (ซ้ายบน)
display.show() # สั่งให้แสดงผล

utime.sleep(2)

display.fill(0) 
a = 3
display.text(str(a),0,0)
display.show()