We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f44add commit cb3dba6Copy full SHA for cb3dba6
variants/waveshare_esp32_s3_zero/pins_arduino.h
@@ -27,6 +27,16 @@ static const uint8_t OUTPUT_IO11 = 11;
27
static const uint8_t OUTPUT_IO12 = 12;
28
static const uint8_t OUTPUT_IO13 = 13;
29
30
+// Def for I2C that shares the IMU I2C pins
31
+static const uint8_t SDA = -1;
32
+static const uint8_t SCL = -1;
33
+
34
+// Mapping based on the ESP32S3 data sheet - alternate for SPI2
35
+static const uint8_t SS = 34; // FSPICS0
36
+static const uint8_t MOSI = 35; // FSPID
37
+static const uint8_t MISO = 37; // FSPIQ
38
+static const uint8_t SCK = 36; // FSPICLK
39
40
// UART0 pins
41
static const uint8_t TX = 43;
42
static const uint8_t RX = 44;
0 commit comments