Freenove Breakout Board for ESP32 / ESP32-S3 WROVER WROOM, Terminal Block Shield HAT with Pin Header, 5V 3.3V Power Outputs, GPIO Status LED
Thumbnail 1Thumbnail 2Thumbnail 3Thumbnail 4Thumbnail 5Thumbnail 6Thumbnail 7Thumbnail 8Thumbnail 9Thumbnail 10

Freenove Breakout Board for ESP32 / ESP32-S3 WROVER WROOM, Terminal Block Shield HAT with Pin Header, 5V 3.3V Power Outputs, GPIO Status LED

Product ID: 550837018
Secure Transaction

Details

  • Brand
    FREENOVE
  • Model Name
    Freenove Board
  • Connectivity Technology
    GPIO
  • Included Components
    various
  • Operating System
    Embedded
5V output up to 3A
💡Independent GPIO status LED
🔌Dual 5V & 3.3V power outputs

Description

⚡ Power your ESP32 projects with precision and style!

  • PLUG PLAY SIMPLICITY - Effortlessly connect via terminal blocks and pin headers with standard 2.54mm pitch for quick prototyping.
  • REAL TIME GPIO INSIGHT - Integrated status LED driven independently ensures accurate GPIO state monitoring without interference.
  • SEAMLESS COMPATIBILITY - Tailored exclusively for Freenove ESP32/ESP32-S3 boards, guaranteeing perfect pin alignment and performance.
  • POWER UP WITH CONFIDENCE - Delivers robust 5V/3.3V outputs, supporting up to 3A for demanding projects.
  • SUPPORT THAT HAS YOUR BACK - Includes free technical support and downloadable tutorials to accelerate your development journey.

The Freenove Breakout Board FNK0091 is a dedicated terminal block shield designed exclusively for Freenove ESP32 and ESP32-S3 series boards. It features multiple 5V and 3.3V power outputs capable of delivering up to 3A, an independent GPIO status LED for real-time signal monitoring, and a user-friendly pin header layout with 2.54mm pitch. Ideal for professionals seeking reliable, plug-and-play hardware expansion with comprehensive technical support.

Specifications

BrandFREENOVE
SeriesFreenove Breakout Board
Item model numberFNK0091
Operating SystemEmbedded
Item Weight2.82 ounces
Package Dimensions4.92 x 3.31 x 1.02 inches
Colorfor ESP32 / ESP32-S3
Processor BrandFreenove
Number of Processors1
Computer Memory TypeSRAM
ManufacturerFreenove
ASINB0CD2512JV
Date First AvailableJuly 28, 2023

Have a Question? See What Others Asked

sirve para un ESP32-S3-DevKitC-1-N8R8 de 44 pines?
What are the board dimensions, and what are the spacings between the mounting holes?

Reviews

D**E

Easy to use and see what your ESP32 is doing.

I do a lot of ESP32 development and have a very small workspace. This board allows me to see what each IO pin is doing with its LED lights and connect wire or plugs to each IO. The only grip I would have would be the bottom of the board with the protruding pins. They will scratch your work surface, So I placed rubber feet on the board. They should have included them with the kit. The power strip screws are very tiny, and it does come with a screwdriver, Don't lose it. Its a very good board for trouble shooting as well. Does provide two way power connection and offers 3v & 5v power strips to connect your sensors or other DIY boards. There is one catch using this dev board. You have to use their ESP32 or ESP8266 board (FREENOVE) Which isn't a bad thing. They make very good EPS32 boards and very easy to program using VS CODE or Arduino IDE software. The IO pins are very well printed on the bottom of the board and on stop. It even has mounting hold to imbed this board into your DIY projects. I wished I had this board 3 years ago. Very good quality and sturdy.

S**A

A handy universal tool for testing microcontroller projects

Extremely handy for viewing what your microcontrollers are up to, and connections are nice and easy. I like using these in small din-rail mounts for projects I expect to mess with every so often.Standard barrel jack makes for easy hookup, though it might be nice to support 12v instead of just 5v. Each side has a swappable rail between 3v3 and 5v, so powering accessories as well as your microcontrollers is nice and easy.As long as your board features legends on the top side it's super easy to wire with, and I've not had any boards in the two-row style not work with it so far. If you want flexibility and ease and don't mind using up some space and paying a little for it, this is certainly worth the money, especially compared to the other boards that are dedicated to single microcontrollers.

J**.

Great for Makers !

Great break out board for the ESP32 S3.

G**H

Time saving and cost effective

Used these breakout boards to wire up some WLED controllers. They were considerably easier to use than the other esp32's I have been using where I had to solder leads to them. They are currently running multiple led light strings and have performed flawlessly. Do keep in mind that they only work with their brand of boards. They are pinned out differently than the other ESP32's I have used on on other projects.

A**N

good but could be better

i would really like a condensed version maybe without the lights, they kind of stay on or get triggered when you touch a pin. the terminals are just barely to small for what i want but its a quality board and it fit my esp32 so i would definitely buy it again.

P**R

Very Nice with ESP32-S3-DevKitC-1

This breakout board is a real joy to use. It provides an LED indicator on nearly every pin, and accepts an external power source. Those LEDs are handy when troubleshooting, and they saved me time identifying connection mistakes quickly.Keep in mind, the screws on those terminals are tiny, but the supplied screwdriver is adequate. Once paired with my ESP32-S3-DevKitC-1, the assembly still fits in the box supplied with the product, which is kind of a bonus.This product may not work with every ESP32 variant, so pay close attention to the pinouts of your development board and compare with those found on this breakout board.At first glance, I wasn't sure this would work with my ESP32-S3-DevKitC-1, but it works great. The breakout board has 40-pins, but the (DevKitC) ESP32-S3-WROOM-1 breakout has 44-pins. The 40-pin socket simply plugs in to the middle 40 pins of the DevKitC, with one pin unconnected at each end. This is not a problem, since those pins are redundant 3V3 and GND pins.Just for fun, enjoy this quick sample code to see all those LEDs in action:#include <Arduino.h>const int gpioPins[] = { 4, 5, 6, 7, 15, 16, 17, 18, 8, 3, 46, 9, 10, 11, 12, 13, 14, 2, 42, 41, 40, 39, 38, 37, 36, 35, 0, 45, 48, 47, 21, 20, 19};const int numPins = sizeof(gpioPins) / sizeof(gpioPins[0]);void setup() {for (int i = 0; i < numPins; i++) {pinMode(gpioPins[i], OUTPUT);}}void loop() {for (int i = 0; i < numPins; i++) {digitalWrite(gpioPins[i], !digitalRead(gpioPins[i]));delay(100);}}update: I'm taking a few stars off. The 5V signal pin on the breakout isn't connected with the DevKit 5V pin.The product description clearly states the abundant (red) 5V0 pins on the breakout are only powered by the external power supply. But the ESP32-S3-DevKitC has a dedicated 5V pin from the 5V+ supplied by either USB port. FYI, the USB port powers the DevKit when no external supply is used. This pin is broken out in the lower-left corner to a blue LED. But, sadly, it is NOT connected to its adjacent (yellow) signal pin. Instead, the pin is tied to all the other (red) 5V pins powered by the external supply through the buck convertor. As far as I can tell, this is the ONLY (yellow) signal pin on the breakout not connected with the corresponding pin on the DevKit. The whole point of the breakout is to make connection with and troubleshooting of the smaller DevKit easier. I presume the designer of this breakout felt users may try to power external devices from the yellow 5V signal pin, and felt it necessary to block them from doing so.

A**R

Read the tutorial if you don't know what you are doing!!!

Works just fine. But read the tutorial on powering it. If you don't power it somehow it appears to not work. I spent hours pulling out the little hair that I have left before reading the tutorial from Freenove's website. Once I did it all came together quickly. I powered the breakout board correctly and it worked. Silly me.

J**N

Useful but sometimes confusing

Very useful board for chips that do not fit in standard boards. Very clear schemes but as there are two (esp 32 and S), I always have to double check the pins.

Common Questions

Yes, all products are sourced directly from authorized retailers in the US, UK, UAE and India. We maintain strict quality control processes and verify each product before shipping. All items come with applicable manufacturer warranties and are covered by our standard return policy.
Delivery times vary by destination country, typically ranging from 3-9 business days. Each order is fully trackable through our system. We handle all customs clearance and use reliable courier partners for last-mile delivery. You'll receive regular updates about your order status via email and our app.
Desertcart is an international e-commerce platform operating since 2014. We securely process thousands of orders globally each day. Every product goes through our quality verification process before delivery, and we provide end-to-end order tracking, 24/7 customer support, and a comprehensive returns policy to ensure a safe shopping experience.
Our prices include the product cost, international shipping, import duties, customs clearance, and local delivery charges. We handle all customs and import procedures, ensuring there are no hidden fees upon delivery. PRO members receive additional benefits including free shipping.

Trustpilot

TrustScore 4.5 | 7,300+ reviews

Rajesh P.

Customer service was outstanding when I had questions about the product.

2 days ago

Sneha T.

Received my product in pristine condition. Great service overall.

1 month ago

Shop Global, Save with Desertcart
Value for Money
Competitive prices on a vast range of products
Shop Globally
Serving millions of shoppers across more than 100 countries
Enhanced Protection
Trusted payment options loved by worldwide shoppers
Customer Assurance
Trusted payment options loved by worldwide shoppers.
Desertcart App
Shop on the go, anytime, anywhere.
SAR 88

Duties & taxes incl.

KSAstore
1
Free Returns

45 daysfor PRO membership users

30 dayswithout membership

Secure Transaction

Ask AI about this Product

Trustpilot

TrustScore 4.5 | 7,300+ reviews

Ravi S.

I loved the variety of products available. Will definitely shop again.

2 months ago

Suresh K.

Very impressed with the quality and fast delivery. Will shop here again.

4 days ago

Freenove Breakout Board For Esp32 Esp32 S3 Wrover Wroom Terminal | Desertcart KSA