ILI9488 calibration with ESP32

Hey Idaho,
Sure thing, thanks for your interest.

Here are the only non-commented lines in User_Setup.h other than the default font and SPI speed settings.

#define ILI9488_DRIVER
#define TFT_MISO 19
#define TFT_MOSI 26
#define TFT_SCLK 18
#define TFT_CS   15  // Chip select control pin
#define TFT_DC   2  // Data Command control pin
#define TFT_RST  4  // Reset pin (could connect to RST pin)
#define TOUCH_CS 14

Other than that, it's the examples from Bodmer's TFT_eSPI library.

Let me know if you'd like to know anything else! :slight_smile:

Cheers,
Dax.