ESP-C3-M1-I-Kit

Development kit for ESP32-C3-M1 module - suited for industrial and secure IoT prototyping.

Micro-USB
ESP-C3-M1-I-Kit board
48.26 × 25.4 mm
ESP32-C3
RISC-V MCU
160MHz
clock
4MB
flash
400KB
SRAM
14· 6 ADC
GPIO
BLE 5.0+ WiFi
radio
On this page

Pinout

15 pins · 2.54 mm pitch
View:
PinGPIOLabelsStatusCapabilitiesNotes
10A0safeadc
21A1safeadc
32A2strappingadc
43LED_REDA3safeadc
54LED_GREENSCKA4strappingadc · spi
65LED_BLUEMISOA5strappingadc · spi
76MOSIstrappingspi
87SSstrappingspi
98SDAstrappingi2c
109SCLstrappingi2c
1118LED_WARMuart-
1219LED_COLDuart-
1320RXuartuart
1421TXuartuart
15-LED_BUILTINsafe-

Start with these

3 pins with no boot or system involvement
A0A1LED_REDA3

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
A2GPIO2Must be held high during boot (if low on reset, normal flash boot may fail)Strapping
LED_GREENMTMSUsed during boot; JTAG TMS for debugging; acts as Quad-SPI flash IO (hold data line) in internal-flash variantsJTAG
LED_BLUEMTDIUsed during boot; JTAG TDI for debugging; acts as Quad-SPI flash IO (write-protect data line) in internal-flash variantsJTAG
MOSIMTCKUsed during boot; JTAG TCK for debugging; provides flash clock in internal-flash variantsJTAG
SSMTDOUsed during boot; JTAG TDO for debugging; acts as Quad-SPI flash IO (data line) in internal-flash variantsJTAG
SDAGPIO8Must be held high during reset (if low, UART flashing/boot may not work)Strapping
SCLGPIO9Controls boot mode on reset (HIGH for normal flash boot, LOW enters serial download mode)Strapping
RXU0RXDUsed as UART0 receive (console/bootloader); repurposing may disable serial programming and debug logsUART
TXU0TXDUsed 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
LED_WARMUSB_D-By default connected to on-chip USB Serial/JTAG controller; to use as GPIO it must be reconfigured from its USB functionUSB
LED_COLDUSB_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 Across 15 pins (2.54 mm pitch), the ESP-C3-M1-I-Kit exposes 14 GPIO. For peripherals, I²C is mapped to SDA on GPIO8 and SCL on GPIO9; the SPI bus ( MOSI , MISO…

Across 15 pins (2.54 mm pitch), the ESP-C3-M1-I-Kit exposes 14 GPIO.

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.

If you want zero surprises, A0, A1 and LED_RED 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 (A2, LED_GREEN, LED_BLUE and 6 more).

Getting started

flash your first firmware in ~2 minutes
Tool:
1
Connect over USB
Install your USB-serial driver (CH340 / CP210x) if no port appears. 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"
Flash Size: "4MB (32Mb)"
Flash Mode: "QIO"
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
Flash Size: 4MB (32Mb)
Flash Mode: QIO
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:esp32c3m1IKit]
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: esp_c3_m1_i_kit
  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 · QIO

Specifications

ESP32-C3 · 48.26 × 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
u.FL
I/O
GPIO · ADC
14 · 6
UART · I²C · SPI
2 · 1 · 3
PWM
6 channels
Power
USB
Micro-USB
Serial
CH340C
Boot address
0x0
Flashing
Upload · OTA
esptool_py · esp_ota
Flash · Boot mode
QIO · QIO
Sketch · Data
1.25 MB · 320 KB
25.4 mm48.26 mm
48.26 × 25.4 mm · pin pitch 2.54 mm
The ESP-C3-M1-I-Kit uses esptool_py for firmware uploads, esp_ota for over-the-air (OTA) updates. Flash mode is QIO with QIO 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.

Onboard you'll find status LEDs (RGB, Warm White, Cold White) and Reset/Boot buttons.

Resources

Similar boards