Espressif ESP32-C3-DevKitC-02

Full-featured ESP32-C3 dev board with USB and debug headers - ideal for prototyping and embedded systems.

Micro-USB
Espressif ESP32-C3-DevKitC-02 board
38.91 × 25.4 mm
ESP32-C3
RISC-V MCU
160MHz
clock
4MB
flash
400KB
SRAM
15· 6 ADC
GPIO
BLE 5.0+ WiFi
radio
On this page

Pinout

30 pins · 2.54 mm pitch
View:
Espressif ESP32-C3-DevKitC-02 pinout diagram
PinGPIOLabelsStatusCapabilitiesNotes
1-GNDground-Ground
2-3V33.3Vpower-3.3V regulated output
3-3V33.3Vpower-3.3V regulated output
4-RSTENcontrol-Chip reset (active low)
5-GNDground-Ground
64IO4A4SCKstrappingadc · spi · pwmADC1_CH4; SPI SCK; JTAG MTMS
75IO5A5MISOstrappingadc · spi · pwmADC2_CH0; SPI MISO; JTAG MTDI
86IO6MOSIstrappingspi · pwmSPI MOSI; JTAG MTCK
97IO7SSstrappingspi · pwmSPI SS; JTAG MTDO
10-GNDground-Ground
118IO8SDAstrappingi2c · pwmOnboard RGB LED; default I2C SDA
129IO9SCLstrappingi2c · pwmBOOT button; default I2C SCL
13-5Vpower-5V input (from USB) / output
14-5Vpower-5V input (from USB) / output
15-GNDground-Ground
16-GNDground-Ground
170IO0A0safeadc · pwmADC1_CH0; RTC; XTAL_32K
181IO1A1safeadc · pwmADC1_CH1; RTC; XTAL_32K
192IO2A2strappingadc · pwmADC1_CH2; FSPIQ
203IO3A3safeadc · pwmADC1_CH3
21-GNDground-Ground
2210IO10safepwmGeneral-purpose GPIO; FSPICS0
23-GNDground-Ground
2420IO20RXuartuart · pwmUART0 RX
2521IO21TXuartuart · pwmUART0 TX
26-GNDground-Ground
2718IO18uartpwmUSB D- (native USB Serial/JTAG)
2819IO19uartpwmUSB D+ (native USB Serial/JTAG)
29-GNDground-Ground
30-GNDground-Ground

Start with these

4 pins with no boot or system involvement
IO0A0IO1A1IO3A3IO10

Freely assignable - no strapping, flash, USB or JTAG duties. Ideal first picks for buttons, sensors and LEDs.

Fine - with a little care

sampled at boot or shared with debug/serial
PinLabelWhat to knowRole
IO4MTMSUsed during boot; JTAG TMS for debugging; acts as Quad-SPI flash IO (hold data line) in internal-flash variantsJTAG
IO5MTDIUsed during boot; JTAG TDI for debugging; acts as Quad-SPI flash IO (write-protect data line) in internal-flash variantsJTAG
IO6MTCKUsed during boot; JTAG TCK for debugging; provides flash clock in internal-flash variantsJTAG
IO7MTDOUsed during boot; JTAG TDO for debugging; acts as Quad-SPI flash IO (data line) in internal-flash variantsJTAG
IO8GPIO8Must be held high during reset (if low, UART flashing/boot may not work)Strapping
IO9GPIO9Controls boot mode on reset (HIGH for normal flash boot, LOW enters serial download mode)Strapping
IO2GPIO2Must be held high during boot (if low on reset, normal flash boot may fail)Strapping
IO20U0RXDUsed as UART0 receive (console/bootloader); repurposing may disable serial programming and debug logsUART
IO21U0TXDUsed as UART0 transmit (console/bootloader); repurposing may disable serial console output and printingUART

Only if you know the tricks

wired to flash or USB - expect a fight
PinLabelWhat to knowRole
IO18USB_D-By default connected to on-chip USB Serial/JTAG controller; to use as GPIO it must be reconfigured from its USB functionUSB
IO19USB_D+By default connected to on-chip USB Serial/JTAG controller; not available for GPIO use unless USB functionality is disabled or remappedUSB
These are recommendations, not hard rules - with the right pull-ups, timing and boot-state awareness most pins can be made to work. When in doubt, start green.
Pinout notes The Espressif ESP32-C3-DevKitC-02 pinout brings out 30 pins at a 2.54 mm pitch - 15 usable GPIO alongside the GND , 3V3 and 5V power rails. For peripherals,…

The Espressif ESP32-C3-DevKitC-02 pinout brings out 30 pins at a 2.54 mm pitch - 15 usable GPIO alongside the GND, 3V3 and 5V power rails.

For peripherals, I²C is mapped to SDA on GPIO8 and SCL on GPIO9; the SPI bus (MOSI, MISO, SCK, SS) is broken out in full; TX/RX on GPIO21 and GPIO20 cover serial logging and flashing.

On the analog side there are 6 ADC-capable pins for sensors and battery monitoring and PWM on every GPIO.

If you want zero surprises, IO0, IO1, IO3 and IO10 are free of any such role - the safest first picks. 9 of the exposed pins carry boot-time or system duties on the ESP32-C3 (IO4, IO5, IO6 and 6 more).

Getting started

flash your first firmware in ~2 minutes
Tool:
1
Connect over USB
Serial chip: CP2102N. Not detected? Hold BOOT while plugging in.
2
Flash with your tool
Arduino IDE, PlatformIO, ESPHome or esptool - copy the settings on the right.
3
Verify it runs
The blink example uses GPIO0 - swap for your board's LED pin if different.
Tools → Board settings Copy
Board:            Esp32 C3 Devkitc 02
Flash Size:       4MB · DIO
Upload Speed:     921600

// blink
pinMode(0, OUTPUT);
digitalWrite(0, LOW);   // on (often inverted)
platformio.ini Copy
[env:esp32-c3-devkitc-02]
platform = espressif32
board = esp32-c3-devkitm-1
framework = arduino
monitor_speed = 115200
upload_speed = 921600
device.yaml Copy
esp32:
  board: esp32-c3-devkitm-1
  variant: esp32_c3_devkitc_02
  framework:
    type: esp-idf

# blink - GPIO0
output:
  - platform: gpio
    pin: 0
    id: led_out
light:
  - platform: binary
    name: "LED"
    output: led_out
shell Copy
esptool.py --chip esp32c3 --port /dev/ttyACM0 \
  write_flash 0x0 firmware.bin
Build details: sketch space 1310720 B · data 327680 B · DIO

Specifications

ESP32-C3 · 38.91 × 25.4 mm
Compute
MCU
ESP32-C3 · RISC-V
Clock
160 MHz
SRAM · Flash
400 KB · 4MB
Radio
Wi-Fi
802.11 b/g/n
Bluetooth
5.0 LE
Antenna
PCB
I/O
GPIO · ADC
15 · 6
UART · I²C · SPI
2 · 1 · 3
PWM
6 channels
Power
USB
Micro-USB
Serial
CP2102N
Boot address
0x0
Flashing
Upload · OTA
esptool_py · esp_ota
Flash · Boot mode
DIO · DIO
Sketch · Data
1.25 MB · 320 KB
25.4 mm38.91 mm
38.91 × 25.4 mm · pin pitch 2.54 mm
The Espressif ESP32-C3-DevKitC-02 uses esptool_py for firmware uploads, esp_ota for over-the-air (OTA) updates. Flash mode is DIO with DIO boot mode. The maximum sketch size is 1.25 MB with 320 KB available for data.

About this board

At its core is the ESP32-C3 - a single-core RISC-V and the budget low-power pick.

Expect to pay about $8.00 - less than the ~$10 most ESP32-C3 boards go for.

Onboard you'll find an addressable RGB LED (GPIO8) and Boot/Reset buttons.

Where to buy

prices are typical street prices
Espressif ESP32-C3-DevKitC-02
Espressif ESP32-C3-DevKitC-02
$8.00per unit, typical
As an Amazon Associate, ESPboards earns from qualifying purchases.

Resources

Similar boards