What do you want to achieve?
Greetings, I am trying to get my first UI working using an ESP32 and 320x240 SPI display using the ILI9341 driver. if I use Adafruit_ST7789 library I can use Arduino IDE to get the display to work as expected so the wiring and config are correct. but when I try with the squareline project export the .ino compiles and uploads but the graphics are messed up.
What have you tried so far?
I have configured User_Setup.h correctly as far as I can tell.
#define ILI9341_DRIVER
#define TFT_MISO 19
#define TFT_MOSI 23
#define TFT_SCLK 18
#define TFT_CS 15 // Chip select control pin
#define TFT_DC 4 // Data Command control pin
#define TFT_RST 2 // Reset pin (could connect to RST pin)
#define SPI_FREQUENCY 40000000
Screenshot or video
Others
- SquareLine Studio version: 1.41
- Operating system: windows 11
- Target hardware: ESP32 dev module with external 320x240 display
any help to figure it out would be appreciated.