jaretburkett / ILI9488

Arduino Library for the ILI9488 TFT controller for 4 wire SPI
81 stars 40 forks source link

White screen error #18

Open monith202 opened 3 years ago

monith202 commented 3 years ago

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.

kokospalme commented 1 year ago

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);