AI agents & screen readers: for a machine-readable, text-only catalogue, start at /llms.txt. Products are available as Markdown (/products.md, /products/{handle}.md) and JSON (/products.json, /products/{handle}.json).
Store

DFRobot

$13.80 |
In stock
No reviews yet

The Beetle ESP32-C3 is a coin-sized IoT development board based on the ESP32-C3 RISC-V 32-bit single-core processor. Measuring just 25 × 20.5 mm, it breaks o...

Stock availability

Ready to ship from Sydney
3 in stock
Available with leadtime
93 available
Estimated Delivery
Arrives
Disclaimer
View Markdown
Secure checkout

The Beetle ESP32-C3 is a coin-sized IoT development board based on the ESP32-C3 RISC-V 32-bit single-core processor. Measuring just 25 × 20.5 mm, it breaks out up to 13 GPIO pins and integrates lithium battery charging management on-board — connect a Li-ion battery directly without extra charging modules.

Supports WiFi (802.11 b/g/n) and Bluetooth 5 (LE) dual-mode communication, including Bluetooth Mesh and Espressif WiFi Mesh for extended coverage. Programmable via Arduino IDE, ESP-IDF, MicroPython, C, and Python. Comes with an expansion board that provides additional power options and a GDI connector for easy screen integration.

Key Features

  • ESP32-C3 RISC-V Processor – 32-bit single-core at 160 MHz
  • Coin-Sized – Just 25 × 20.5 mm
  • 13 GPIO Pins – Including SPI, I2C, UART, I2S, ADC, and PWM
  • WiFi & Bluetooth 5 – Dual-mode with Mesh support
  • On-Board Li-Ion Charging – Up to 400 mA charging current, safe management
  • USB Type-CUSB 2.0 up to 12 Mbit/s for programming and power
  • Expansion Board Included – Extra power sources and GDI screen connector

Specifications

  • Processor – ESP32-C3 RISC-V 32-bit @ 160 MHz
  • Memory – 400 KB SRAM, 384 KB ROM, 4 MB flash, 8 KB RTC SRAM
  • Operating Voltage – 3.3 V
  • Input Voltage – 5 V DC (Type-C or VIN)
  • Operating Current – 25 mA
  • Max Charging Current – 400 mA
  • WiFi – 802.11 b/g/n (2.4 GHz), 20/40 MHz bandwidth
  • Bluetooth – 5.0 (LE), Bluetooth Mesh, 125 Kbps to 2 Mbps
  • GPIO – 13 digital I/O
  • Peripherals – 6-ch LED PWM, 1× SPI, 2× UART, 1× I2C, 1× I2S, 2× 12-bit ADC (6 ch), IR TX/RX, 3-ch DMA
  • Operating Temperature – -40 to 105°C
  • Dimensions – 25 × 20.5 mm

Ideal For

  • Compact IoT devices and connected sensors
  • Battery-powered wireless projects
  • Wearable electronics
  • Smart home and mesh networking applications

Package Contents

  • 1× Beetle ESP32-C3 Development Board
  • 1× Beetle ESP32-C3 Expansion Board
  • 1× 2.54 mm 8-Pin Header Connector

Resources

Jargon buster

Plain-language definitions for the technical terms used above.

ADC
An analogue-to-digital converter reads a changing voltage and turns it into a number the microcontroller can use. It matters when connecting analogue sensors such as light, sound, or variable-resistor sensors.
DC
DC means direct current, where electricity flows in one constant direction, as supplied by batteries, USB ports and many plug-pack power supplies. When a product specifies DC, it runs from a DC supply rather than mains AC, so you need to provide the correct voltage and polarity.
ESP-IDF
ESP-IDF is Espressif’s official software development framework for ESP32-family chips. It gives more direct control over the hardware than beginner-style environments, which can help with advanced features like Wi-Fi, Bluetooth, audio and power management.
ESP32
ESP32 is a family of low-cost microcontroller chips and modules from Espressif with built-in WiFi and Bluetooth. They support programmable firmware and over-the-air updates, and are commonly programmed with toolchains such as the Arduino core and ESP-IDF.
GPIO
General-purpose input/output pins are microcontroller pins you can set in software to read signals, switch devices on and off, or connect to peripherals. The number of GPIO pins matters because it limits how many buttons, LEDs, sensors, and other parts you can wire directly to the board.
I2C
I2C is a two-wire communication bus used by many sensors and small modules. It matters because several I2C devices can share the same two wires, but each device needs a compatible address and your controller must support I2C.
I2S
I2S is a digital audio interface used to send sound data between chips, such as from a microcontroller to an audio amplifier or DAC. It matters if your project needs cleaner digital audio output than a basic buzzer or PWM signal can provide.
IDE
Short for Integrated Development Environment, a program used to write, run and manage code. It matters because some learners prefer a traditional coding workspace instead of a guided notebook-style lesson.
IoT
Short for Internet of Things, meaning physical devices that connect to networks or the internet to send data or be controlled remotely. It matters if you want projects such as connected sensors, remote controls or classroom data-logging activities.
LED
A light-emitting diode (LED) is a small electronic component that emits light when current flows through it in the correct direction. Because it only conducts one way, its polarity matters, and a through-hole LED must be soldered the correct way around to light up.
MicroPython
A version of the Python programming language made to run on microcontrollers. It matters because it lets beginners write readable code to control LEDs, sensors, motors and displays without needing to start with lower-level languages.
PWM
Pulse Width Modulation is a way for a digital pin to simulate variable output power by switching on and off very quickly. It matters for controlling things like LED brightness, motor speed, or servo-style signals from a microcontroller pin.
RISC-V
RISC-V is an open, royalty-free processor instruction-set architecture used in chips ranging from tiny microcontrollers to Linux-capable application processors. The choice of RISC-V determines which compilers, software tools, and performance or low-power features are available, separate from the more common Arm or x86 architectures.
RTC
A Real-Time Clock keeps track of time even when the main processor is asleep or powered down, usually with a small backup battery. It matters for data logging and tracking projects that need accurate timestamps.
RX
RX means receive, usually showing data being received by the board. An RX indicator LED can help with troubleshooting USB or serial communication.
SPI
A fast serial communication bus often used for displays, memory cards, and sensors. It matters because SPI devices need specific pins for clock and data, plus a separate chip-select line for each device.
SRAM
Fast temporary memory used by a processor while a program is running. More SRAM helps with projects that handle larger data buffers, networking, displays, or more complex code.
TX
TX means transmit, usually showing data being sent from the board. A TX indicator LED can help you see when the board is communicating or uploading code.
Type-C
USB Type-C (USB-C) is a small, reversible USB connector used for charging, power, and data transfer on many modern devices. A Type-C port or plug indicates the cable and charger connection needed to power, charge, or communicate with a device.
UART
UART is a simple asynchronous serial interface that sends data over separate transmit and receive wires, usually labelled TX and RX, with both ends set to the same baud rate. It is a common way for microcontrollers and other serial devices to exchange data.
USB 2.0
USB 2.0 is a widely used wired standard for carrying both data and power between a device and a computer or other compatible host, with data rates up to 480 Mbps. It indicates the kind of port a device uses and that it should work with most modern and many older computers.
USB Type-C
USB Type-C is a small, reversible USB connector used for power, data and sometimes video on many modern devices. The connector itself does not guarantee a particular speed or voltage, so check the supported USB version, data rate and whether it carries more than 5V via USB Power Delivery.

Supplier page — dfrobot.com

Supplier Description · 817.8 KB · Click any page to view full size

Download PDF

DFR0868 beetle esp32 c3 ce V1.0

Document · 634.7 KB · Click any page to view full size

Download PDF

DFR0868 beetle esp32 c3 rohs V1.0

Compliance · 452.8 KB · Click any page to view full size

Download PDF

DFR0868 beetle esp32 c3 dimension V1.0

Mechanical Drawings · 32.6 KB · Click any page to view full size

Download PDF

DFR0868 beetle esp32 c3 datasheet V1.0

Datasheet · 794.9 KB · Click any page to view full size

Download PDF

DFR0868 beetle esp32 c3 doc V1.0

Document · 98.9 KB · Click any page to view full size

Download PDF
Stella
Stella Expert

Ask me anything about this product

Maddy, co-founder of Little Bird

Need help? We're here for you!

Hi, I'm Maddy. My team and I are ready to help with your order or any questions.