WT32-SC01 #173
-
Hi, i try to get this work with the WT32-SC01 https://fccid.io/2AFOS-WT32-SC01/User-Manual/User-manual-5453310.pdf Thanks Edwin |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
#define TFT_MISO 12 Arduino_DataBus bus = new Arduino_ESP32SPI(TFT_DC / DC /, TFT_CS / CS /, TFT_SCLK / SCK /, TFT_MOSI / MOSI /, TFT_MISO / MISO /, VSPI / spi_num */); I have it working. |
Beta Was this translation helpful? Give feedback.
#define TFT_MISO 12
#define TFT_MOSI 13
#define TFT_SCLK 14
#define TFT_CS 15
#define TFT_DC 21
#define TFT_RST 22
#define TFT_BL 23
#define GFX_BL TFT_BL
Arduino_DataBus bus = new Arduino_ESP32SPI(TFT_DC / DC /, TFT_CS / CS /, TFT_SCLK / SCK /, TFT_MOSI / MOSI /, TFT_MISO / MISO /, VSPI / spi_num */);
Arduino_GFX gfx = new Arduino_ST7796(bus, TFT_RST, 0 / rotation /, false / IPS */);
I have it working.