We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afffaf2 commit 9d25253Copy full SHA for 9d25253
variants/fri3d_2024_esp32s3/pins_arduino.h
@@ -35,6 +35,18 @@ static const uint8_t MOSI = 6;
35
static const uint8_t MISO = 8;
36
static const uint8_t SCK = 7;
37
38
+#define BOARD_HAS_SPI_LCD
39
+#define LCD_MODEL ST7789
40
+#define LCD_WIDTH 240
41
+#define LCD_HEIGHT 294
42
+#define LCD_MISO MISO
43
+#define LCD_DC 4 // Used to switch data and command status.
44
+#define LCD_CS 5 // used to enable LCD, low level to enable.
45
+#define LCD_CLK SCK // LCD SPI Clock.
46
+#define LCD_MOSI MOSI // LCD SPI MOSI.
47
+#define LCD_RST 48 // used to reset LCD, low level to reset.
48
+
49
50
static const uint8_t A0 = 1;
51
static const uint8_t A1 = 2;
52
static const uint8_t A2 = 3;
0 commit comments