2.4" TFT Arduino UNO Shield with ESP32 not working

I'm using this display with an ESP32 DEVKIT.

I made a homemade PCB with these connections from this post:

#define LCD_RD  2  //LED
#define LCD_WR  4
#define LCD_RS 15  //or LCD_CD - hard-wired to A2 (GPIO35) 
#define LCD_CS 33  //hard-wired to A3 (GPIO34)
#define LCD_RST 32 //hard-wired to A4 (GPIO36)

#define LCD_D0 12
#define LCD_D1 13
#define LCD_D2 26
#define LCD_D3 25
#define LCD_D4 17
#define LCD_D5 16
#define LCD_D6 27
#define LCD_D7 14

I have checked and double checked that the connections and PCB are good.

I have tried both the MCUFRIEND_kbv and the TFT_eSPI libraries, followed the configurations needed, seen other blogs posts, and it just won't work with any example from the libraries.

What happens with the graphictest is that the screen just blinks gray.

With the arduino uno it works, but I wanted to connect the screen to the internet and thus I made the PCB for the ESP32.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.