You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
I am interested in using the PicoGraphics library to drive my ILI9341 display on a RP2040-based Pico. I've tried the following:
display_spi = SPIBus(cs=10, dc=8, sck=6, mosi=7)
display = PicoGraphics(display=DISPLAY_PICO_DISPLAY_2, bus=display_spi, pen_type=PEN_RGB565)
display_width, display_height = display.get_bounds()
while True:
display.set_pen(display.create_pen(random.randint(0, 255), random.randint(0, 255), random.randint(0, 255)))
for x in range(0, display_width):
for y in range(0, display_height):
display.pixel(x, y)
display.update()
Unsurprisingly, nothing happened - I assume these drivers are not compatible with ILI9341.
I see #596 is open, intended to add support for ILI9341. My questions are:
Is there a known existing way to use PicoGraphics with a ILI9341?
If not, is there a goal to add ILI9341 support?
Is there a guide on building the custom Pico firmware from source, so I could try out the branch on Ili9341 xpt2046 drivers #596 ?
Thank you for your help and all the great work on this library!
Hello,
I am interested in using the PicoGraphics library to drive my ILI9341 display on a RP2040-based Pico. I've tried the following:
Unsurprisingly, nothing happened - I assume these drivers are not compatible with ILI9341.
I see #596 is open, intended to add support for ILI9341. My questions are:
Thank you for your help and all the great work on this library!