

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, and robotics. It simplifies power management by providing multiple output terminals, ensuring reliable and safe power delivery to connected devices.








The Holybro PDB 60A is designed to meet the demands of high-current applications while maintaining a compact and lightweight form factor. Below are the key technical details:
| Parameter | Value |
|---|---|
| Maximum Current | 60A |
| Input Voltage Range | 2S-6S LiPo (7.4V - 22.2V) |
| Dimensions | 36mm x 50mm |
| Weight | 10g |
| PCB Material | 4-layer PCB with copper traces |
| Operating Temperature | -20°C to 85°C |
The PDB features multiple input and output terminals for efficient power distribution. Below is the pin configuration:
| Pin Name | Description |
|---|---|
| VIN+ | Positive input terminal (connect to battery positive) |
| VIN- | Negative input terminal (connect to battery negative) |
| Pin Name | Description |
|---|---|
| VOUT+ | Positive output terminal for devices |
| VOUT- | Negative output terminal for devices |
| ESC Pads | Dedicated pads for connecting ESCs (Electronic Speed Controllers) |
If you are using the PDB to power an Arduino UNO, follow these steps:
Here is a simple Arduino code example to read voltage from a sensor connected to the PDB:
// Define the analog pin connected to the voltage sensor
const int voltagePin = A0;
// Variable to store the voltage reading
float voltage = 0.0;
void setup() {
// Initialize serial communication for debugging
Serial.begin(9600);
}
void loop() {
// Read the analog value from the voltage sensor
int sensorValue = analogRead(voltagePin);
// Convert the analog value to voltage (assuming a 5V reference)
voltage = sensorValue * (5.0 / 1023.0);
// Print the voltage to the Serial Monitor
Serial.print("Voltage: ");
Serial.print(voltage);
Serial.println(" V");
// Wait for 1 second before the next reading
delay(1000);
}
Q: Can I use this PDB with a 4S LiPo battery?
A: Yes, the PDB supports 2S-6S LiPo batteries, so a 4S battery (14.8V) is compatible.
Q: Does the PDB include a built-in current sensor?
A: Some versions of the Holybro PDB 60A include optional pads for connecting an external current sensor, but it does not have a built-in sensor.
Q: Can I power multiple ESCs from this PDB?
A: Yes, the PDB is designed to handle multiple ESCs, provided the total current does not exceed 60A.
Q: Is the PDB waterproof?
A: No, the PDB is not waterproof. Use conformal coating or other protective measures if operating in wet conditions.
By following this documentation, you can effectively integrate the Holybro Power Distribution Board (PDB) 60A into your project for efficient and reliable power distribution.