Freenove Breakout Board for Raspberry Pi Pico 1 2 W H WH, Terminal Block Shield HAT with Pin Header, GPIO Status LED
Thumbnail 1Thumbnail 2Thumbnail 3Thumbnail 4Thumbnail 5Thumbnail 6Thumbnail 7Thumbnail 8Thumbnail 9Thumbnail 10

Freenove Breakout Board for Raspberry Pi Pico 1 2 W H WH, Terminal Block Shield HAT with Pin Header, GPIO Status LED

Product ID: 480857153
Secure Transaction

Details

  • Brand
    FREENOVE
  • Model Name
    FNK0081
  • Ram Memory Installed Size
    1 GB
  • CPU Model
    None
  • Connectivity Technology
    GPIO
💡Independent GPIO status LED
🔌Universal GPIO compatibility
🛠️Clear pin labeling & terminal blocks

Description

⚡ Elevate your Raspberry Pi Pico projects with instant GPIO insight!

  • REAL TIME GPIO STATUS - Built-in LED indicators show live input/output signals without interfering with your GPIO pins.
  • PLUG PLAY GPIO MASTERY - Seamlessly connects with all Raspberry Pi Pico variants for instant prototyping power.
  • PRECISION PIN IDENTIFICATION - Every pin is clearly labeled on the board, eliminating guesswork and speeding up your builds.
  • ROBUST TERMINAL BLOCK SHIELD - Secure, easy wiring with 2.54mm pitch terminal blocks designed for professional-grade projects.
  • COMPREHENSIVE SUPPORT TUTORIALS - Downloadable step-by-step guides and free technical support keep you ahead of the curve.

The Freenove Breakout Board is a precision-engineered terminal block shield compatible with all Raspberry Pi Pico models, featuring independent GPIO status LEDs for real-time signal monitoring, clearly labeled pins for hassle-free wiring, and comes with downloadable tutorials plus free technical support to accelerate your development workflow.

Specifications

Processornone
BrandFREENOVE
SeriesFNK0081
Item model numberFNK0081
Item Weight2.11 ounces
Package Dimensions4.96 x 3.23 x 1.06 inches
Processor Brandfreenove
Number of Processors1
Computer Memory TypeSRAM
ManufacturerFreenove
ASINB0BFB53Y2N
Date First AvailableSeptember 14, 2022

Have a Question? See What Others Asked

What is the size of the four corner spacer holes?
Hi, do we need to buy the Raspberry Pi Pico with Pre-Soldered Header for this to work outside of the box? I see the back part is all female.
Can i hook up a 42v servo to this ?
Are the mounting holes in the same locations as a (non-pico) Raspberry Pi? (so that it can be attached to a RAB holder)

Reviews

N**N

Good quality, convenient features

This is a well-designed and easy-to-use breakout board. The LED indicators for each GPIO are incredibly useful for debugging without needing to connect external LEDs or use a multimeter. For example, if a GPIO is mistakenly left floating (instead of enabling an internal pull-up), you can immediately see the LED flashing erratically, making it easy to identify the issue. Similarly, when testing outputs, you can confirm that they are functioning as expected in your code without having to connect additional components.When you're ready to hook up components, the screw terminals are high quality and provide a secure connection. I do recommend using silicone-insulated stranded wire, as it provides the most secure and reliable connection for 2.54mm screw terminals. While I haven’t tested larger AWG wire on this board, past experience suggests silicone stranded wire offers the best durability. While this isn't the cheapest breakout board available, the time saved in debugging and setup makes it worth the cost. Another great feature is that the LED indicators are isolated, meaning they don’t interfere with the normal behavior of the GPIOs, which is a big plus. The Pins are clearly labeled which as well is nice.Overall, if you're working with the Raspberry Pi Pico and want a breakout board that simplifies prototyping and debugging, this is a good choice.

J**Y

Super to check/verify GPIO function

This board has LEDs to see when a GPIO is hi or lo and screw terminals to connect externals to power and GPIOs. It is great for viewing my project in development and aiding connection to sensors and devices. So handy (and mountable), I left it connected to the I/O for easy change, removed the Pico-w and just ordered another Breakout Board for my next project.Also handy for checking functionality of pico GPIO by cycling through them with this simple script/*RW and blink testWrite then Read each GPIO pin and blink the LED on the Freenovebreak-out board at the same time. (which is failing, the Pico or my IO?)For Newbies (would have helped me a few years ago) it goes something like:Setup is for things you only do once, first, so, setting it up. It reads:For GPIO pins starting at GPIO0 and going as long as GPIO is less than 29;OH! If GPIO is not 23 or 24 or 25; (not for our use)Set the GPIO pin mode to output (to write it, You can still read it, as input).The loop runs over and over let's call it looping:Again for i (GPIO number) is 0 to 28 omitting 23. 24. and 25:and let's do this all twice;First write the pin high {or on, or 1, or true):then check if it's there (it's there boolean wise if it's not 0, off, false, low)if as written, print that to the serial monitorelse if it isn't there, as written, print that.Then set it low, off, 0, false and check and report result as aboveRince and repeatgo to the next GPIO and the next ...*/int i, repeat = 0; //i stands for itteration, you can pick any name you like// we will use these variables to count below in our "for loops"void setup() {Serial.begin(9600); // Sets you serial monitor to 9600 baudfor (i = 0; i < 29; i ++){ // ++ increments i by oneif (!(i == 23 || i == 24 || i == 25)){ // they are not available for your IO usepinMode(i, OUTPUT);}}}void loop() {for ( i = 0; i < 29; i ++){if (!(i == 23 || i == 24 || i == 25)){ // ! means logical not , || means logical orfor (repeat = 1; repeat <= 2; repeat ++){digitalWrite(i, HIGH); // turn the LED voltage and logic HIGH, on, 1, trueif (digitalRead(i)){ // if GPIO number i is not 0Serial.println("GPIO " + String(i) + " reads high");}else{Serial.println("GPIO " + String(i) + " didn't read high");}delay(500); // wait half a seconddigitalWrite(i, LOW); // turn the LED off by making the voltage LOWif (!digitalRead(i)){Serial.println("GPIO " + String(i) + " reads low");}else{Serial.println("GPIO " + String(i) + " didn't read low");}delay(500);}}}}

T**N

Very good for rapid protyping.

Work great for testing and I'll likely order a couple more. The leds on the board that indicate power really helps in trouble shooting. All in all worth it.

E**T

Handy but needs to be a bit higher quality

Love the idea that I can reused the Pico on different projects without the breadboard. The little leds make it nice to see whats registering. However, I'm not totally sold on the accuracy of these things. Sometimes there would be LED's on where nothing is connected and no LED's where things were connected and intermittently worked. I would like to see a little higher quality. Granted you can make your own, this might just be a quick intermediate solution.

H**W

Exceptional Breakout Board for Raspberry Pi Pico W!

Rating: ⭐⭐⭐⭐⭐ (5 out of 5 stars)WOW! The Freenove Breakout Board for the Raspberry Pi Pico W is absolutely fantastic! This board has exceeded all my expectations in terms of quality and functionality. It seamlessly extends the capabilities of the Raspberry Pi Pico W, making every pin accessible and clearly labeled, which is a dream for both beginners and experienced makers.The build quality of the breakout board is top-notch, ensuring stable connections and a reliable foundation for a multitude of projects. I cannot recommend this breakout board enough. It's a perfect companion for the Raspberry Pi Pico W, enhancing its usability without complicating its innate simplicity. If you're diving into projects that require extensive I/O with the Pico W, this breakout board is a must-have.

C**G

Works perfect

I am using this on a 3D printed DIN rail bracket to mount my Pi Pico. The bolt pattern is 52X58mm and uses M2.5 screws (same as the Raspberry Pi) if you're wondering, since for some reason Freenove declined to provide a basic board schematic on their github. Overall board size is about 57X63mm.This a very nice breakout board, providing dupont headers close to the Pico as well as terminal blocks for use with smaller gauge wiring. The obvious highlight is being able to see what the GPIO pins are doing, which makes troubleshooting easier. I really wish that something like this exists for other popular MCUs out there on the market!

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

Ali H.

Fast shipping and excellent packaging. The Leatherman tool feels very premium and sturdy.

1 day ago

Imran F.

Very reliable shop with genuine products. Will definitely buy again!

2 weeks 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.
C$2244

Duties & taxes incl.

Nicaraguastore
1
Free Returns

30 daysfor PRO membership users

15 dayswithout membership

Secure Transaction

Ask AI about this Product

Trustpilot

TrustScore 4.5 | 7,300+ reviews

Anita G.

Good experience, but the tracking updates could be better.

2 months ago

Ali H.

Fast shipping and excellent packaging. The Leatherman tool feels very premium and sturdy.

1 day ago

Freenove Breakout Board For Raspberry Pi Pico 1 2 W | Desertcart Nicaragua