Espressif ESP32-C3-DevKit-RUST-1

Rust-optimized ESP32-C3 board from Espressif - great for embedded developers targeting low-level performance.

USB-C Native USB
Espressif ESP32-C3-DevKit-RUST-1 board
ESP32-C3
RISC-V MCU
160MHz
clock
4MB
flash
400KB
SRAM
15· 6 ADC
GPIO
BLE 5.0+ WiFi
radio
On this page

Pinout

28 pins
View:
Espressif ESP32-C3-DevKit-RUST-1 pinout diagram
PinGPIOLabelsStatusCapabilitiesNotes
1-RSTcontrol-Chip reset (active low)
2-3V33.3Vpower-3.3V regulated output
3-NC-Not connected
4-GNDground-Ground
50IO0A0safeadc · pwmADC1_CH0
61IO1A1safeadc · pwmADC1_CH1
72IO2A2strappingadc · pwmADC1_CH2; onboard WS2812 RGB LED data
83IO3A3safeadc · pwmADC1_CH3
94IO4A4strappingadc · pwmADC1_CH4; JTAG MTMS
105IO5A5strappingadc · pwmADC2_CH0; JTAG MTDI
116IO6strappingpwmJTAG MTCK
127IO7strappingpwmOnboard user LED; JTAG MTDO
138IO8SCLstrappingi2c · pwmI2C SCL to onboard ICM-42670 IMU and SHTC3 temp/humidity sensor
1421IO21TXuartuart · pwmUART0 TX
1520IO20RXuartuart · pwmUART0 RX
169IO9strappingpwmBOOT button
17-BAT+power-Li-ion battery input (via MCP73831 charger)
18-ENcontrol-Chip enable (active high)
19-5Vpower-5V input (from USB) / output
20-NC-Not connected
21-NC-Not connected
22-NC-Not connected
23-NC-Not connected
24-NC-Not connected
2519IO19uartpwmUSB D+ (native USB Serial/JTAG)
2618IO18uartpwmUSB D- (native USB Serial/JTAG)
278IO8SCLstrappingi2c · pwmI2C SCL to onboard ICM-42670 IMU and SHTC3 temp/humidity sensor
2810IO10SDAsafei2c · pwmI2C SDA to onboard ICM-42670 IMU and SHTC3 temp/humidity sensor

Start with these

4 pins with no boot or system involvement
IO0A0IO1A1IO3A3IO10SDA

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
IO2GPIO2Must be held high during boot (if low on reset, normal flash boot may fail)Strapping
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
IO21U0TXDUsed as UART0 transmit (console/bootloader); repurposing may disable serial console output and printingUART
IO20U0RXDUsed as UART0 receive (console/bootloader); repurposing may disable serial programming and debug logsUART
IO9GPIO9Controls boot mode on reset (HIGH for normal flash boot, LOW enters serial download mode)Strapping
IO8GPIO8Must be held high during reset (if low, UART flashing/boot may not work)Strapping

Only if you know the tricks

wired to flash or USB - expect a fight
PinLabelWhat to knowRole
IO19USB_D+By default connected to on-chip USB Serial/JTAG controller; not available for GPIO use unless USB functionality is disabled or remappedUSB
IO18USB_D-By default connected to on-chip USB Serial/JTAG controller; to use as GPIO it must be reconfigured from its USB functionUSB
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-DevKit-RUST-1 pinout brings out 28 pins - 16 usable GPIO alongside the 3V3 , GND , BAT+ and 5V power rails. Peripheral wiring is…

The Espressif ESP32-C3-DevKit-RUST-1 pinout brings out 28 pins - 16 usable GPIO alongside the 3V3, GND, BAT+ and 5V power rails.

Peripheral wiring is straightforward: I²C is mapped to SDA on GPIO10 and SCL on GPIO8, while TX/RX on GPIO21 and GPIO20 cover serial logging and flashing.

Beyond plain digital I/O you get 6 ADC-capable pins for sensors and battery monitoring and PWM on every GPIO.

10 of the exposed pins carry boot-time or system duties on the ESP32-C3 (IO2, IO4, IO5 and 7 more) - check the guidance above before wiring anything to them. IO0, IO1, IO3 and IO10 are free of any such role - the safest first picks.

Getting started

flash your first firmware in ~2 minutes
Tool:
1
Connect over USB
Native USB - shows up as a port right away, no driver needed. Not detected? Hold BOOT while plugging in.
2
Match & flash
Set the Tools options shown, then click Upload.
3
Verify it runs
The onboard LED on GPIO0 blinks - swap the pin if your board's LED differs.
Set these in Tools · leave everything else at default
Arduino IDE 2.x — Tools Copy
Board: "ESP32C3 Dev Module"
USB CDC On Boot: "Enabled"
Flash Size: "4MB (32Mb)"
Flash Mode: "DIO"
Partition Scheme: "Default 4MB with spiffs (1.2MB APP / 1.5MB SPIFFS)" (default)
Upload Speed: "921600"
▸ every other Tools option — leave at default
Board: ESP32C3 Dev Module
USB CDC On Boot: Enabled
Flash Size: 4MB (32Mb)
Flash Mode: DIO
Partition Scheme: Default 4MB with spiffs (1.2MB APP / 1.5MB SPIFFS)
Upload Speed: 921600
Find it: Tools ▸ Board ▸ ESP32 Arduino ▸ ESP32C3 Dev Module
blink.ino Copy
// blink the onboard LED
void setup() {
  pinMode(0, OUTPUT);
}
void loop() {
  digitalWrite(0, HIGH); delay(500);
  digitalWrite(0, LOW);  delay(500);
}
board to selectesp32-c3-devkitm-1⧉ copy
platformio.ini Copy
[env:esp32-c3-devkit-rust-1]
platform = espressif32
board = esp32-c3-devkitm-1
framework = arduino
monitor_speed = 115200
upload_speed = 921600
Find it: PlatformIO Home ▸ Boards, search esp32-c3-devkitm-1 — or type it after board =.
board to selectesp32-c3-devkitm-1⧉ copy
device.yaml Copy
esp32:
  board: esp32-c3-devkitm-1
  variant: esp32_c3_devkit_rust_1
  framework:
    type: esp-idf

# blink - GPIO0
output:
  - platform: gpio
    pin: 0
    id: led_out
light:
  - platform: binary
    name: "LED"
    output: led_out
Find it: search ESPHome's board list for esp32-c3-devkitm-1 (same ids as PlatformIO).
esptool doesn't pick board settings — a prebuilt .bin already has them baked in. This is just the raw flash command.
terminal Copy
esptool.py --chip esp32c3 --port /dev/ttyACM0 \
  --baud 921600 write_flash 0x0 firmware.bin
--port = your /dev/tty* (macOS/Linux) or COMx (Windows).
Build details: sketch space 1310720 B · data 327680 B · DIO

Specifications

ESP32-C3
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
USB-C
Serial
Native (CDC)
Boot address
0x0
Flashing
Upload · OTA
esptool_py · esp_ota
Flash · Boot mode
DIO · DIO
Sketch · Data
1.25 MB · 320 KB
The Espressif ESP32-C3-DevKit-RUST-1 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

Inside sits the ESP32-C3 - a single-core RISC-V and the budget low-power pick.

At $19.95 it's on the expensive side for an ESP32-C3 board - most land around $10.

Around the module: an ICM-42670-P IMU, an addressable RGB LED (GPIO2), an environmental sensor (SHTC3), battery charging (MCP73831) and Reset/Boot buttons.

It flashes over native USB - no serial-converter driver needed, which isn't a given among ESP32-C3 boards.


The ESP32-C3-DevKit-RUST-1 is an entry-level development board based on the ESP32-C3-MINI-1 module, featuring a 32-bit RISC-V single-core processor with Wi-Fi and Bluetooth 5 (LE) capabilities. Designed to demonstrate Rust programming capabilities, it includes a 6-DoF IMU, a temperature and humidity sensor, a Li-Ion battery charger, and a Type-C USB connector, making it ideal for IoT applications and embedded systems.

Where to buy

prices are typical street prices
Espressif ESP32-C3-DevKit-RUST-1
Espressif ESP32-C3-DevKit-RUST-1
$19.95per unit, typical

Resources

Similar boards