DFRobot Beetle ESP32-C3
by DFRobot
Ultra-small ESP32-C3 board with Type-C and rich GPIO - great for wearable, embedded, and space-limited designs.

On this page
DFRobot Beetle ESP32-C3 Pinout
13 pins · 2.54 mm pitch| Pin | GPIO | Labels | Status | Capabilities | Notes |
|---|---|---|---|---|---|
| 1 | 0 | A0 | safe | adc | |
| 2 | 1 | A1 | safe | adc | |
| 3 | 2 | A2 | strapping | adc | |
| 4 | 3 | A3 | safe | adc | |
| 5 | 4 | SCKA4 | strapping | adc · spi | |
| 6 | 5 | MISOA5 | strapping | adc · spi | |
| 7 | 6 | MOSI | strapping | spi | |
| 8 | 7 | SS | strapping | spi | |
| 9 | 8 | SDA | strapping | i2c | |
| 10 | 9 | SCL | strapping | i2c | |
| 11 | 10 | LED_BUILTIN | safe | - | |
| 12 | 20 | RX | uart | uart | |
| 13 | 21 | TX | uart | uart |
Start with these
4 pins with no boot or system involvementFreely assignable - no strapping, flash, USB or JTAG duties. Ideal first picks for buttons, sensors and LEDs.
Fine - with a little care
9 pins · 9 things to knowA2GPIO2 Strapping pin, but it does not select the boot mode - GPIO9 does. Espressif only recommend pulling it up against reset-time glitches. Floating by default. Strapping
A strapping pin: Espressif recommend an external pull-up against glitches at reset, so avoid heavy capacitive loads or a strong low drive here. It does not put the chip into download mode (that is GPIO9).
SCKGPIO4 Bootstrapping pin; JTAG TMS; Flash data (FSPIHD in internal-flash models) JTAG
Used during boot; JTAG TMS for debugging; acts as Quad-SPI flash IO (hold data line) in internal-flash variants
MISOGPIO5 Bootstrapping pin; JTAG TDI; Flash data (FSPIWP in internal-flash models) JTAG
Used during boot; JTAG TDI for debugging; acts as Quad-SPI flash IO (write-protect data line) in internal-flash variants
MOSIGPIO6 Bootstrapping pin; JTAG TCK; Flash clock (FSPICLK in internal-flash models) JTAG
Used during boot; JTAG TCK for debugging; provides flash clock in internal-flash variants
SSGPIO7 Bootstrapping pin; JTAG TDO; Flash data (FSPID in internal-flash models) JTAG
Used during boot; JTAG TDO for debugging; acts as Quad-SPI flash IO (data line) in internal-flash variants
SDAGPIO8 Bootstrapping pin (needs HIGH at reset); also gates ROM boot message printing (UART_PRINT_CONTROL efuse) Strapping
Must be held high during reset (if low, UART flashing/boot may not work)
SCLGPIO9 Bootstrapping pin; selects boot mode (HIGH = SPI flash boot, LOW = UART download) Strapping
Controls boot mode on reset (HIGH for normal flash boot, LOW enters serial download mode)
RXGPIO20 UART0 RXD (default serial input) UART
Used as UART0 receive (console/bootloader); repurposing may disable serial programming and debug logs
TXGPIO21 UART0 TXD (default serial output) UART
Used as UART0 transmit (console/bootloader); repurposing may disable serial console output and printing
The DFRobot Beetle ESP32-C3 pinout brings out 13 GPIO pins at a 2.54 mm pitch - every one of them usable in your project.
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, A3 and LED_BUILTIN 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, SCK, MISO and 6 more).
Getting started
flash your first firmware in ~2 minutesBoard: ESP32C3 Dev Module USB CDC On Boot: Enabled Flash Size: 4MB (32Mb) Flash Mode: QIO Partition Scheme: Default 4MB with spiffs (1.2MB APP/1.5MB SPIFFS) Upload Speed: 921600
// toggle GPIO0 - wire an LED and resistor to it
void setup() {
pinMode(0, OUTPUT);
}
void loop() {
digitalWrite(0, HIGH); delay(500);
digitalWrite(0, LOW); delay(500);
}[env:dfrobot_beetle_esp32c3]
platform = espressif32
board = esp32-c3-devkitm-1
framework = arduino
monitor_speed = 115200
upload_speed = 921600esp32-c3-devkitm-1 - or type it after board =.esp32:
board: esp32-c3-devkitm-1
variant: esp32c3
framework:
type: esp-idf
# blink - GPIO0
output:
- platform: gpio
pin: 0
id: led_out
light:
- platform: binary
name: "LED"
output: led_outesp32-c3-devkitm-1 (same ids as PlatformIO).esptool.py --chip esp32c3 --port /dev/ttyACM0 \
--baud 921600 write_flash 0x0 firmware.bin--port = your /dev/tty* (macOS/Linux) or COMx (Windows).Specifications
ESP32-C3 · 25 × 20.5 mm · vs other ESP32 chips →Dimensions
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 $17.00 - above the ~$10 typical for ESP32-C3 boards.
Onboard you'll find battery charging (TP4057) and Reset/Boot buttons.
It flashes over native USB - no serial-converter driver needed, which isn't a given among ESP32-C3 boards.
Where to buy
prices are typical street prices
Resources
Similar boards




