ILI9488
ILI9488 copied to clipboard
White screen error
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.
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);