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

· MPN: DFR1075

$12.35 |
In stock
No reviews yet

The FireBeetle 2 ESP32-C6 is a low-power IoT development board built around a 160MHz RISC-V single-core processor. It supports Wi-Fi 6 (802.11ax), Bluetooth ...

Stock availability

Ready to ship from Sydney
1 in stock
Available with leadtime
1,388 available
Estimated Delivery
Arrives
Disclaimer
View Markdown
Secure checkout

The FireBeetle 2 ESP32-C6 is a low-power IoT development board built around a 160MHz RISC-V single-core processor. It supports Wi-Fi 6 (802.11ax), Bluetooth 5, Zigbee 3.0, Thread 1.3, and the Matter smart home standard, making it one of the most connectivity-versatile ESP32 boards available.

With deep sleep consumption as low as 16µA and support for solar panel charging with integrated lithium battery management, the board is well-suited for remote and battery-powered IoT deployments. Wi-Fi 6 Target Wake Time (TWT) further extends battery life by negotiating wake-up schedules with the access point.

Key Features

  • Multi-Protocol Wireless – Wi-Fi 6, Bluetooth 5, Zigbee 3.0, Thread 1.3, and Matter support
  • Ultra-Low Power – 16µA deep sleep current (V1.0)
  • Wi-Fi 6 TWT – Target Wake Time for optimised battery life
  • Solar Charging – Integrated lithium battery management with solar panel input (4.5–6V)
  • Battery Monitoring – Built-in battery level detection
  • GDI Display Interface – Easy connection to compatible screens
  • Arduino & MicroPython – Programmable via Arduino IDE or MicroPython

Specifications

  • Processor – RISC-V single-core, 160MHz
  • Memory – 512KB SRAM, 320KB ROM, 4MB Flash, 16KB RTC SRAM
  • Operating Voltage – 3.3V
  • Input Voltage – 5V DC (Type-C) or 4.5–6V solar panel
  • Max Charging Current – 500mA
  • USBUSB 2.0 CDC
  • Wi-Fi – 802.11b/g/n/ax (2.4GHz, 20/40MHz bandwidth)
  • BluetoothBLE 5.0 (125Kbps, 500Kbps, 1Mbps, 2Mbps)
  • 802.15.4 – Thread 1.3 and Zigbee 3.0 (250Kbps)
  • GPIO – 19× digital I/O
  • PWM – 6 channels
  • ADC – 12-bit SAR, 7 channels
  • InterfacesSPI ×1, UART ×3 (incl. LP UART), I2C ×2 (incl. LP I2C), I2S ×1
  • IR Transceiver – 5 TX channels, 5 RX channels
  • DMA – 3 TX channels, 3 RX channels
  • Operating Temperature – -10°C to 60°C
  • Dimensions – 25.4 × 60mm (1" × 2.36")

Ideal For

  • Matter-compatible smart home devices
  • Indoor air quality and environment monitoring
  • Solar-powered outdoor weather stations
  • Soil moisture and plant monitoring
  • Thread border routers and Zigbee bridges

Package Contents

  • 1× FireBeetle 2 Board ESP32-C6
  • 2× 20-pin 2.54mm pin headers

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.
BLE
BLE stands for Bluetooth Low Energy, a Bluetooth mode designed for low power use and broad compatibility with modern phones and computers. It connects well to battery-powered and mobile devices, including Apple hardware, though it behaves differently from Bluetooth Classic and its serial-style profiles.
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.
deep sleep
Deep sleep is a low-power mode where the microcontroller turns off most functions while keeping just enough circuitry active to wake up later. It is important for battery-powered projects because it can greatly extend how long the device runs between charges.
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.
Headers
Rows of connector contacts on a fixed pitch (commonly 2.54 mm) used to link a board to a breadboard, jumper wires, or another board. They come as male pin headers and female socket headers; when a module ships with pre-soldered headers it can be used straight away, whereas bare pads require soldering the pins yourself.
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.
Matter
A smart home connectivity standard designed to let devices work across different ecosystems. It matters if you want a project to integrate more easily with platforms such as Apple Home, Google Home, or other Matter-compatible systems.
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.
Thread
A low-power wireless mesh networking standard designed for smart home and IoT devices. It matters because Thread devices can relay messages through each other, helping build reliable networks for sensors and controllers.
TWT
Target Wake Time is a Wi-Fi 6 power-saving feature that lets devices schedule when they wake up to communicate. It matters for battery-powered projects because the radio can sleep for longer periods and use less energy.
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.
Wi-Fi 6
A newer Wi-Fi standard that can improve speed, range, and efficiency compared with older Wi-Fi versions. It matters for projects that need reliable wireless networking, especially where many devices share the same network.
Zigbee
A low-power wireless standard commonly used by smart home sensors, switches, and lights. It matters if you want the board to communicate with Zigbee devices or act as part of a home automation network.

Supplier page — dfrobot.com

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

Download PDF

DFR1075 firebeetle esp32 c6 microcontroller ce v1

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

Download PDF

DFR1075 firebeetle esp32 c6 microcontroller rohs v1

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

Download PDF

DFR1075 firebeetle esp32 c6 microcontroller dimension v1

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

Download PDF

6f630301d84caf0e92266e3c5cf11edc

Datasheet · 1.2 MB · Click any page to view full size

Download PDF

c5ead36917605c173e2f752de32246a1

Datasheet · 1.5 MB · Click any page to view full size

Download PDF

85759bb076bf6bb24fd8ca5683f19603

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

Download PDF

5eeffd974782b6cc442f7a2ee7f00577

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

Download PDF

DFR1075 firebeetle esp32 c6 microcontroller 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.