

The PDB XT60 is a Power Distribution Board designed to efficiently distribute power from a single battery source to multiple electronic components in a circuit. It features an integrated XT60 connector for easy and secure battery connection, making it a popular choice for RC vehicles, drones, and other multi-component electronic systems. The PDB XT60 simplifies wiring, reduces clutter, and ensures reliable power delivery to motors, ESCs (Electronic Speed Controllers), and other peripherals.








The PDB XT60 is designed to handle high current loads while maintaining a compact and lightweight form factor. Below are the key technical details:
| Parameter | Value |
|---|---|
| Input Voltage Range | 7.4V - 22.2V (2S to 6S LiPo) |
| Maximum Current | 60A continuous, 120A peak |
| Connector Type | XT60 (input) |
| Output Ports | Multiple solder pads |
| PCB Material | FR4 (fire-retardant) |
| Dimensions | ~36mm x 50mm |
| Weight | ~10g |
The PDB XT60 typically features solder pads for connecting various components. Below is a description of the key connections:
| Pin/Pad Label | Description |
|---|---|
| XT60 Input | Connects to the battery via the XT60 connector. |
| + (Positive) | Positive power output pads for connecting ESCs, motors, or other devices. |
| - (Negative) | Negative power output pads for connecting ESCs, motors, or other devices. |
| AUX Pads | Auxiliary power output pads for additional components (e.g., LEDs, FCs). |
While the PDB XT60 is not directly connected to an Arduino UNO, it can be used to power peripherals in a project involving the Arduino. For example, you can use the PDB to power motors or LEDs while the Arduino controls them.
// Example code for controlling a motor via an Arduino UNO
// Ensure the motor is powered via the PDB XT60, and the Arduino controls the ESC.
const int motorPin = 9; // PWM pin connected to the ESC signal wire
void setup() {
pinMode(motorPin, OUTPUT);
// Initialize the motor at zero speed
analogWrite(motorPin, 0);
}
void loop() {
// Gradually increase motor speed
for (int speed = 0; speed <= 255; speed += 5) {
analogWrite(motorPin, speed); // Send PWM signal to ESC
delay(100); // Wait for 100ms
}
// Gradually decrease motor speed
for (int speed = 255; speed >= 0; speed -= 5) {
analogWrite(motorPin, speed); // Send PWM signal to ESC
delay(100); // Wait for 100ms
}
}
No Power Output
Overheating
Short Circuit
Intermittent Power Loss
Can I use the PDB XT60 with a 3S LiPo battery? Yes, the PDB XT60 supports 2S to 6S LiPo batteries, including 3S.
What is the maximum number of devices I can connect? The number of devices depends on the total current draw. Ensure the combined current does not exceed 60A continuous.
Can I use this PDB for non-drone applications? Absolutely! The PDB XT60 can be used in any project requiring efficient power distribution.
Do I need additional fuses or protection? While the PDB XT60 is robust, adding external fuses or circuit breakers can provide extra protection for sensitive components.