Open step135 opened 3 months ago
I'm also facing a similar issue. If you have got any update on this please do share here
You could try this once, although it did not work for me!
I'm in a similar boat with an integrated ESP32-S3+ST7789V2 display. I'm trying to use Setup208_ST7789.h, as supplied from the Waveshare wiki's `product page', where the 'sample demo' download provides the libraries. I did update all of the included libraries to the latest releases.
The (not currently working) config provided by WaveShare is as follows:
#define USER_SETUP_ID 208
#ifdef USER_SETUP_INFO
#undef USER_SETUP_INFO
#define USER_SETUP_INFO "ESP32-S3-Touch-LCD-1.69"
#endif
#ifdef ILI9341_DRIVER
#undef ILI9341_DRIVER
#endif
#define ST7789_DRIVER
// For ESP32 Dev board (only tested with GC9A01 display)
// The hardware SPI can be mapped to any pins
#define TFT_WIDTH 240
#define TFT_HEIGHT 280
#define TFT_RGB_ORDER TFT_BGR
#define TFT_MISO -1
#define TFT_MOSI 7
#define TFT_SCLK 6
#define TFT_CS 5 // Chip select control pin
#define TFT_DC 4 // Data Command control pin
#define TFT_RST 8
#define TFT_BL 15
#define TFT_BACKLIGHT_ON HIGH
#define LOAD_GLCD // Font 1. Original Adafruit 8 pixel font needs ~1820 bytes in FLASH
#define LOAD_FONT2 // Font 2. Small 16 pixel high font, needs ~3534 bytes in FLASH, 96 characters
#define LOAD_FONT4 // Font 4. Medium 26 pixel high font, needs ~5848 bytes in FLASH, 96 characters
#define LOAD_FONT6 // Font 6. Large 48 pixel font, needs ~2666 bytes in FLASH, only characters 1234567890:-.apm
#define LOAD_FONT7 // Font 7. 7 segment 48 pixel font, needs ~2438 bytes in FLASH, only characters 1234567890:.
#define LOAD_FONT8 // Font 8. Large 75 pixel font needs ~3256 bytes in FLASH, only characters 1234567890:-.
#define LOAD_GFXFF // FreeFonts. Include access to the 48 Adafruit_GFX free fonts FF1 to FF48 and custom fonts
#define SMOOTH_FONT
#define SPI_FREQUENCY 80000000
I'd be happy to help test, or run diagnostics, if that would help.
I use ESP32 CAM.