ST7789V Driver #2070
-
Hi, I am using TFT024B045 which contains ST7789V, I am programmoing it using ESP32. I am defining this in User_Setup.h #define ESP32_PARALLEL #define ST7789_DRIVER // ESP32 pins used for the parallel interface TFT #define TFT_WR 12 // Write strobe control pin - must use a pin in the range 0-31 #define TFT_D0 16 // Must use pins in the range 0-31 for the data bus Is this the right way? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
TFT024B045 Data Sheet ST7789V Data Sheet Pin Configuration is mentioned in the tft data sheet |
Beta Was this translation helpful? Give feedback.
-
The display module has a 16 bit parallel interface. The only processor in the library that supports 16 bit parallel interface is the RP2040. It appears the IMx pins (that set the interface mode) are not accessible. |
Beta Was this translation helpful? Give feedback.
-
Is there any wiring information to connect this LCD to Rasberry PI pico that has RP2040 ? |
Beta Was this translation helpful? Give feedback.
The display module has a 16 bit parallel interface. The only processor in the library that supports 16 bit parallel interface is the RP2040.
It appears the IMx pins (that set the interface mode) are not accessible.