CircuitPython version and board name
Adafruit CircuitPython 10.x.x
waveshare rp2350 zero
xiao rp2350
Code/REPL
` = picodvi.Framebuffer(FB_WIDTH, FB_HEIGHT,
clk_dp=board.GP14, clk_dn=board.GP15,
red_dp=board.GP12, red_dn=board.GP13,
green_dp=board.GP18, green_dn=board.GP19,
blue_dp=board.GP16, blue_dn=board.GP17,
color_depth=color_depth)`
Behavior
Traceback (appels les plus récents en dernier) :
Fichier "<stdin>", ligne 39, dans <module>
ValueError: Broche invalide pour 'red_dp'
Description
on RP2350, picodvi lib need hstx pins that available only on pins 12-19.
on waveshare rp2350 zero there is no PIN16 available (used by ws2812 led board)
on xiao rp2350 : only pins 12, 16, 17 are available on the bord, so there is not enough pins to connect DVI breakboard
Additional information
So it is impossible to use the picodvi lib on these board, please remove the lib from the package to reduce size
CircuitPython version and board name
Code/REPL
Behavior
Description
on RP2350, picodvi lib need hstx pins that available only on pins 12-19.
on waveshare rp2350 zero there is no PIN16 available (used by ws2812 led board)
on xiao rp2350 : only pins 12, 16, 17 are available on the bord, so there is not enough pins to connect DVI breakboard
Additional information
So it is impossible to use the picodvi lib on these board, please remove the lib from the package to reduce size