ESP32C3 DevKitM-1 documentation has incorrect SPI pin out.
Posted: Wed Mar 23, 2022 10:48 pm
The documentation on the ESP32C3 dev kit is incorrect in the pin-out diagram.
https://docs.espressif.com/projects/esp ... itm-1.html#
On this diagram it states that the SPI CLOCK is at GPIO6.
In reality, it is on GPIO4, which can be confirmed with the source code here:
~/.arduino15/packages/esp32/hardware/esp32/2.0.2/variants/esp32c3
Which shows that:
https://docs.espressif.com/projects/esp ... itm-1.html#
On this diagram it states that the SPI CLOCK is at GPIO6.
In reality, it is on GPIO4, which can be confirmed with the source code here:
~/.arduino15/packages/esp32/hardware/esp32/2.0.2/variants/esp32c3
Which shows that:
Code: Select all
static const uint8_t SS = 7;
static const uint8_t MOSI = 6;
static const uint8_t MISO = 5;
static const uint8_t SCK = 4;