ILI9488 icon indicating copy to clipboard operation
ILI9488 copied to clipboard

White screen error

Open monith202 opened this issue 3 years ago • 1 comments

I am using ESP32 to interface with ili9488 but the display only shows white screen.I am using 4 wire SPI and I am able to read I'd registers by bitbanging but your example Arduino code doesnt run.

monith202 avatar Mar 12 '21 04:03 monith202

I have the same issue on an ESP32 dev module. The ILI9488 only shows a white screen when I want to draw anything, print text etc. I already checked the wiring twice.

my setup:

#define SPI_CLK 17
#define SPI_MOSI 5
#define SPI_MISO 16
#define SPI_CSLCD 14
#define TFT_RST 19
#define TFT_LED 12
#define TFT_DC 13

ILI9488 tft = ILI9488(SPI_CSLCD, TFT_DC, SPI_MOSI, SPI_CLK, TFT_RST, SPI_MISO);

kokospalme avatar Nov 11 '22 18:11 kokospalme