

The Adafruit DC Power BFF (Part ID: 5882) is a compact and efficient power distribution board designed to provide a reliable DC power source for a variety of electronic projects. It features multiple output terminals, onboard protection mechanisms, and a user-friendly design, making it an excellent choice for powering microcontrollers, sensors, and other electronic components.
This board is particularly useful in projects requiring a stable power supply for multiple devices, such as robotics, IoT systems, and prototyping setups.








| Parameter | Value |
|---|---|
| Input Voltage Range | 3.3V to 16V DC |
| Output Voltage | Matches input voltage (pass-through) |
| Maximum Output Current | 5A (total across all outputs) |
| Protection Features | Reverse polarity, overcurrent protection |
| Dimensions | 25mm x 25mm x 5mm |
| Weight | 2g |
The Adafruit DC Power BFF features the following input and output terminals:
| Pin | Label | Description |
|---|---|---|
| VIN | VIN | Positive DC input voltage (3.3V to 16V) |
| GND | GND | Ground connection for the input voltage |
| Pin | Label | Description |
|---|---|---|
| VOUT | VOUT | Positive DC output voltage (matches VIN) |
| GND | GND | Ground connection for the output voltage |
Connect the Input Voltage:
VIN and GND input terminals. Ensure the voltage is within the supported range (3.3V to 16V).Distribute Power to Devices:
VOUT and GND output terminals. The output voltage will match the input voltage.Secure Connections:
Power On:
The Adafruit DC Power BFF can be used to power an Arduino UNO and additional peripherals. Below is an example setup:
VIN and GND terminals of the Power BFF.VOUT and GND terminals to the Arduino UNO's VIN and GND pins, respectively.Here’s a simple Arduino sketch to blink an LED connected to the Arduino UNO powered by the Adafruit DC Power BFF:
// Blink an LED connected to pin 13 of the Arduino UNO
// Ensure the Arduino is powered via the Adafruit DC Power BFF
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output
}
void loop() {
digitalWrite(13, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(13, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
No Power Output:
Devices Not Powering On:
Overheating:
Reverse Polarity Connection:
Can I use the Adafruit DC Power BFF with a 12V battery?
Is the output voltage regulated?
Can I use this board to power multiple devices simultaneously?
Does the board include an on/off switch?
This concludes the documentation for the Adafruit DC Power BFF. For additional support, refer to the official Adafruit website or community forums.