LILYGO T-Display RP2040


#1

If you’re looking for a Raspberry Pi RP2040 board with a built-in colour display I recommend the LILYGO T-Display RP2040:

It includes a 240x135 colour TFT display, two user buttons, an LED, a mini socket for powering the board from a LiPo cell (not compatible with Adafruit LiPo cells, but a cable is provided), and battery voltage detection. You can charge the LiPo cell from the USB port.

For more information see: LILYGO T-Display RP2040


#2

this looks like a nice board!

have you seen this 2" 320x240 from pimoroni?

i just picked one up for my rpi pico rp2040, not had chance to try it out yet. i would be interested to know if you think it would work with uLisp?


#3

i would be interested to know if you think it would work with uLisp?

It uses the same ST7789 driver, so I’m pretty sure it will work. You might have to make a couple of changes to the configuration lines:

  Adafruit_ST7789 tft = Adafruit_ST7789(5, 1, 3, 2, 0); // TTGO RP2040 TFT
  #define TFT_BACKLIGHT 4
  #define TFT_I2C_POWER 22

to reflect the pins it uses to drive the display.