

The Holybro Power Distribution Board (PDB) 60A is a robust and efficient circuit board designed to distribute electrical power to multiple components in a system. With a maximum current handling capacity of 60 amps, this PDB is ideal for high-power applications such as drones, RC vehicles, robotics, and other electronic systems requiring reliable power management.
The PDB features multiple output terminals, enabling seamless connection to various devices while ensuring efficient power distribution and minimizing the risk of overload. Its compact design and high current capacity make it a popular choice for hobbyists and professionals alike.








| Parameter | Specification |
|---|---|
| Manufacturer | Holybro |
| Maximum Current Capacity | 60A |
| Input Voltage Range | 2S–6S LiPo (7.4V–25.2V) |
| Output Voltage | Same as input voltage (unregulated) |
| Dimensions | 36mm x 50mm |
| Weight | 10g |
| PCB Material | High-quality FR4 |
| Connector Type | Solder pads for input/output |
| Additional Features | Integrated filtering capacitors |
The Holybro PDB 60A features solder pads for both input and output connections. Below is a description of the key pads:
| Pad Name | Description |
|---|---|
| VIN+ | Positive input terminal for connecting the battery (2S–6S LiPo). |
| VIN- | Negative input terminal for connecting the battery ground. |
| VOUT+ | Positive output terminals for distributing power to connected devices. |
| VOUT- | Negative output terminals for distributing ground to connected devices. |
| Capacitor Pads | Pads for integrated capacitors to reduce voltage ripple and noise. |
While the PDB itself does not directly interface with an Arduino, it can be used to power peripherals connected to the Arduino. Below is an example of powering an Arduino UNO and a motor driver using the PDB:
/* Example: Controlling a motor with Arduino UNO and PDB
- The PDB distributes power to the motor driver and Arduino.
- Ensure the PDB is connected to a 2S–6S LiPo battery.
*/
// Define motor control pins
const int motorPin1 = 9; // Motor control pin 1
const int motorPin2 = 10; // Motor control pin 2
void setup() {
// Set motor pins as outputs
pinMode(motorPin1, OUTPUT);
pinMode(motorPin2, OUTPUT);
}
void loop() {
// Rotate motor in one direction
digitalWrite(motorPin1, HIGH);
digitalWrite(motorPin2, LOW);
delay(2000); // Run for 2 seconds
// Stop motor
digitalWrite(motorPin1, LOW);
digitalWrite(motorPin2, LOW);
delay(1000); // Pause for 1 second
// Rotate motor in the opposite direction
digitalWrite(motorPin1, LOW);
digitalWrite(motorPin2, HIGH);
delay(2000); // Run for 2 seconds
// Stop motor
digitalWrite(motorPin1, LOW);
digitalWrite(motorPin2, LOW);
delay(1000); // Pause for 1 second
}
| Issue | Possible Cause | Solution |
|---|---|---|
| PDB overheating | Exceeding the 60A current limit | Reduce the load or use a higher-capacity PDB. |
| Devices not receiving power | Poor solder connections | Re-solder the connections and ensure proper contact. |
| Voltage ripple affecting devices | Insufficient filtering | Add external capacitors to reduce noise. |
| Short circuit | Incorrect wiring or exposed connections | Double-check wiring and insulate exposed areas. |
Can I use the PDB with a 12V power supply instead of a LiPo battery?
How many devices can I connect to the PDB?
Do I need additional cooling for the PDB?
Can I use this PDB for a 7S or higher LiPo battery?
This documentation provides a comprehensive guide to using the Holybro Power Distribution Board (PDB) 60A effectively. For further assistance, refer to the manufacturer's support resources.