RP Pico + Display Pack and Arduino

Hi,

Is there a tutorial anywhere on how to use the Pico Display Pack with the Arduino IDE?

1 Like

Nevermind, I managed to solve it.
The magic was in this tutorial: Arduino Wiring & Test | Adafruit 1.14" 240x135 Color TFT Breakout LCD Display | Adafruit Learning System

In the graphicstest example you need to write the following under Option 2:

#define TFT_CS 17
#define TFT_DC 16
#define TFT_MOSI 19
#define TFT_SCLK 18
#define TFT_RST -1

1 Like

Thank you, magic interweb person!

I needed to turn on the backlight with:

digitalWrite(20, HIGH);

but otherwise this was what I needed