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) # ล้างหน้าจอ
display.pixel(4,2,1) # x=4(col) y=2(row) เลข 1 ตัวสุดท้ายหมายถึงสั่งให้หลอดติดสว่าง
                                                 # ตำแหน่ง x จะเริ่มจาก 0 ถึง 7 (col) และ ตำแหน่ง y จะเริ่มจาก 0 ถึง 7 (row)
                                                 # คำสั่งนี้จะทำให้หลอดที่อยู่ ณ col=4 และ row=2 ติดสว่าง
display.show()