import max7219
from machine import Pin, SPI
from time import sleep

num_display = 4

cs_pin = Pin(6, Pin.OUT)

spi = SPI(0)

display = max7219.Matrix8x8(spi, cs_pin, num_display)

while True:
    display.fill(0)
    display.text('1234',0,1,1)
    display.show()
    sleep(3)
    
    display.fill(0)
    display.text('abcd',0,1,1)
    display.show()
    sleep(3)
    
    display.fill(0)
    display.text('WXYZ',0,1,1)
    display.show()
    sleep(3)
    
    display.fill(0)
    display.text('*#+?',0,1,1)
    display.show()
    sleep(3)
$abcdeabcde151015202530fghijfghij
BOOTSELLED1239USBRaspberryPiPico©2020RP2-8020/21P64M15.00TTT