4.0" ST7796S + FT6336U + ESP32-S3-Devkitc-1 N8R2 Problem #3485
Replies: 4 comments 7 replies
-
What speed did you set your serial output to as it looks like your output is garbled. Also, it looks like your board uses Quad SPI for flash and you have set Dual SPI (DIO). Maybe you should get a blink sketch with serial output to work before trying to go further? |
Beta Was this translation helpful? Give feedback.
-
What version of TFT_eSPI and Arduino package are you using? |
Beta Was this translation helpful? Give feedback.
-
What version of Arduino package are you using? |
Beta Was this translation helpful? Give feedback.
-
Did you see the comment in the issue I mentioned? |
Beta Was this translation helpful? Give feedback.
-
Hi Everyone
i'm New to TFT LCD's And I'm Trying To Use http://www.lcdwiki.com/4.0inch_Capacitive_SPI_Module_ST7796 as HMI For my Device.
So I need Help I Used TFT_eSPI And LVGL but none of them works.
i just can send simple Fill Color to LCD using SPI Commands
i Tried ESP-IDF And Arduino IDE none of them works correct
so here is my prooblem with Arduino IDE
Everytime i use TFT_eSPI it Compile And Upload to board but everytime my ESP Boot On Download Mode:
I Tried 2 different Config File For User_Setup.h And different SPI Pins Like This
Config 1:
#define TFT_MISO 5
#define TFT_MOSI 6
#define TFT_SCLK 4
#define TFT_CS 7 // Chip select control pin
#define TFT_DC 9 // Data Command control pin
#define TFT_RST 10 // Reset pin (could connect to RST pin)
Config 2:
#define TFT_MISO 12
#define TFT_MOSI 13
#define TFT_SCLK 14
#define TFT_CS 11 // Chip select control pin
#define TFT_DC 17 // Data Command control pin
#define TFT_RST 18 // Reset pin (could connect to RST pin)
But Still Not Working!
it's important to me to make it works
Beta Was this translation helpful? Give feedback.
All reactions