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

SparkFun

· MPN: WRL-30678

$46.00 |
In stock at supplier
No reviews yet

Built around Espressif’s ESP32-C5-WROOM-1 module, this Thing Plus board gives IoT projects a compact microcontroller platform with dual-band WiFi 6, Bluetoot...

Stock availability

Available with leadtime
18 available
Estimated Delivery
Arrives
Disclaimer
View Markdown
Secure checkout

Built around Espressif’s ESP32-C5-WROOM-1 module, this Thing Plus board gives IoT projects a compact microcontroller platform with dual-band WiFi 6, Bluetooth 5 LE, Zigbee and Thread connectivity. It pairs a 32-bit RISC-V single-core microprocessor with 8MB Flash and 8MB PSRAM for connected projects that need flexible wireless options.

The board uses the SparkFun Thing Plus form factor and is compatible with the Adafruit Feather footprint. It breaks out all 19 ESP32-C5 GPIO pins, plus Reset and Enable signals, to standard 0.1-inch spaced headers, with UART, I2C, SPI and parallel IO able to be mapped across the ESP32-C5’s flexible pin architecture. The Freebie pin and D6 are intentionally left as No Connect.

For expansion and portable builds, it includes a solderless Qwiic connector, microSD card slot, USB-C for power and programming, a 2-pin JST connector for a LiPo battery, onboard battery charging and a fuel gauge. It comes pre-flashed with MicroPython firmware and also supports development in the Arduino IDE.

Features:

  • Dual-Band WiFi 6 (2.4GHz & 5GHz): Build fast, highly efficient network connections by utilising the less-crowded 5GHz band.
  • Bluetooth® 5 LE: Designed for low-power, device-to-device communication.
  • Zigbee & Thread (802.15.4): Supports low-bandwidth mesh networks for smart home integration.
  • Matter-Compatible: Supports smart home device integration across leading ecosystems.
  • Solderless Qwiic Connector: Integrates with SparkFun’s plug-and-play I2C sensors, actuators and displays.
  • microSD Card Slot: Adds data logging and storage options to your project.
  • Integrated Power Management: USB-C for primary power and programming, plus a 2-pin JST connector for a LiPo battery.
  • Battery Support: Onboard MCP73831 charger and MAX17048 fuel gauge for battery-powered projects.
  • Status LEDs: Includes a WS2812 addressable RGB LED, Red Power LEDs and a Yellow LiPo Charge LED.
  • MicroPython: Comes pre-flashed with MicroPython firmware for quick out-of-box testing.
  • Arduino IDE: Supports development using the Arduino IDE.

Specifications:

  • Module: ESP32-C5-WROOM-1 Module
  • Microprocessor: 32-bit RISC-V Single-Core Microprocessor
  • WiFi: 2.4 and 5GHz Dual Band WiFi
  • Bluetooth: Bluetooth® 5
  • Zigbee: Zigbee
  • Thread: Thread (802.15.4)
  • Flash: 8MB Flash
  • PSRAM: 8MB PSRAM
  • GPIOs: 19 GPIOs
  • Form factor: Thing Plus Form-Factor
  • Dimensions: 2.3" x 0.9" (not including USB-C connector stickout)
  • Mounting holes: Four Mounting Holes
  • PTH pins: 28 PTH pins (2 No Connect)
  • USB connector: USB-C Connector
  • Battery connector: 2-pin JST Connector for LiPo Battery (not included)
  • Qwiic connector: 4-pin Qwiic Connector
  • Storage: µSD Card Slot
  • Battery charger: MCP73831 Battery Charger
  • Charge rate: 213mA@3.3V
  • Fuel gauge: MAX17048 Fuel Gauge
  • I2C address: 0x36
  • LEDs: LEDs
  • Red Power LEDs: Red Power LEDs
  • Red Power LED locations: System and Peripheral
  • RGB LED: WS2812 RGB LED
  • WS2812 data in: Data In connected to IO27
  • Charge LED: Yellow LiPo Charge LED

Documentation is available for the schematic, KiCad files, board dimensions, hookup guide, ESP32-C5-WROOM-1 datasheet, ESP32-C5 technical reference manual and GitHub repository.

Jargon buster

Plain-language definitions for the technical terms used above.

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.
I2C address
An I2C address is the number a device uses so a microcontroller can tell it apart from other devices on the same I2C bus. It matters because two devices with the same fixed address may conflict if used together.
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.
LiPo
A LiPo (lithium polymer) battery is a rechargeable lithium battery widely used in portable projects because it is light and compact. LiPo cells need correct charging circuitry and careful handling to stay safe, so equipment that supports LiPo generally includes charging or protection hardware suited to that battery type.
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.
MAX17048
A battery fuel-gauge chip that estimates how much charge is left in a LiPo battery. It matters for portable projects because your software can monitor battery level instead of only measuring voltage.
MCP73831
A lithium battery charger chip used to safely charge a single-cell LiPo battery. It matters because it lets the board recharge a battery from USB or another input without needing a separate charger module.
microcontroller
A microcontroller is a small computer on a single chip that runs a stored program and controls connected inputs and outputs such as buttons, sensors, displays and communication interfaces. In a device built around one, it is the part that executes the code and coordinates the device's behaviour.
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.
microSD card
A microSD card is a small removable flash memory card used to store data such as audio, images, logs or program files. Its capacity and formatting (often FAT32 or exFAT) affect how much can be stored and whether the card needs preparing before use.
PTH
Plated through-hole means the pin holes are metal-lined so solder connects the pad on both sides of the board. It is useful for connectors and headers that need a strong mechanical and electrical connection.
Qwiic
Qwiic is a plug-in connector system for I2C devices that uses small 4-pin cables, so you can connect compatible sensors without soldering. It matters because your controller or adapter also needs Qwiic, or you will need a cable or breakout to wire it up.
RGB
Short for red, green and blue, the three primary colours of light that are mixed in varying amounts to make a wide range of colours. In electronics RGB can refer to an LED or pixel that blends these three colours, or to a colour signal or interface that carries separate red, green and blue channels.
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.
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.
Thing Plus
Thing Plus is SparkFun’s development-board form factor with a small rectangular layout and connections suited to wireless and battery-powered projects. It matters because boards and accessories in the same form factor are easier to mount, wire, and swap between projects.
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.
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-C
USB-C is a small, reversible USB connector that can carry power, data and, on some devices, video over a single cable. The same connector can range from charging only to high-speed data, so the functions a given port actually supports vary.
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.

Thing Plus ESP32-C5 Schematic

Schematic · 450.0 KB · Click any page to view full size

Download PDF

ESP32-C5-WROOM-1 Datasheet

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

Download PDF

Supplier page — sparkfun.com

Supplier Description · 1.1 MB · Click any page to view full size

Download PDF

ESP32-C5 Technical Reference Manual

Datasheet · 13.9 MB · 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.