

A Mini Power Distribution Board (PDB) is a compact circuit board designed to simplify power management in electronic projects. It is commonly used in drones, RC vehicles, and other multi-component systems to distribute power from a single battery to multiple components, such as motors, electronic speed controllers (ESCs), and flight controllers. By centralizing power distribution, the Mini PDB reduces wiring complexity, improves efficiency, and ensures a cleaner and more organized setup.








Below are the key technical details of a typical Mini PDB:
| Parameter | Specification |
|---|---|
| Input Voltage Range | 7V to 26V (2S to 6S LiPo batteries) |
| Maximum Current Rating | 100A (total) |
| Output Voltage Options | 5V and 12V regulated outputs |
| Dimensions | 36mm x 36mm |
| Weight | ~10g |
| Mounting Hole Spacing | 30.5mm x 30.5mm (standard for drones) |
| PCB Material | FR4 (flame-retardant material) |
| Connector Type | Solder pads or XT60 input connector |
The Mini PDB typically features solder pads for input and output connections. Below is a table describing the key pads and their functions:
| Pad/Connector | Description |
|---|---|
| Battery Input | Connects to the main battery (e.g., 2S-6S LiPo). Typically marked as + and -. |
| ESC Outputs | Distributes power to the ESCs. Usually four sets of + and - pads for quadcopters. |
| 5V Output | Provides regulated 5V output for powering flight controllers or other components. |
| 12V Output | Provides regulated 12V output for cameras, video transmitters, or LEDs. |
| Ground (GND) | Common ground connection for all components. |
+ and - input pads on the Mini PDB. Ensure proper polarity to avoid damage.+ and - output pads. For quadcopters, connect one ESC to each set of pads.If you are using the Mini PDB to power an Arduino UNO, you can connect the 5V regulated output to the Arduino's 5V pin and the ground to the GND pin. Below is an example Arduino sketch to control an LED powered via the Mini PDB:
// Example Arduino code to control an LED powered by the Mini PDB
const int ledPin = 13; // Pin connected to the LED
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an output
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
PDB Not Powering Components
+ and -) and check for proper polarity.Overheating
Short Circuit
Regulated Outputs Not Working
Can I use the Mini PDB with a 1S LiPo battery?
What is the maximum power output of the Mini PDB?
Can I use the Mini PDB for non-drone applications?
How do I mount the Mini PDB?
By following this documentation, you can effectively integrate the Mini PDB into your projects and ensure reliable power distribution.