

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 drones, RC vehicles, 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.








| Parameter | Specification |
|---|---|
| Input Voltage Range | 7V - 26V (2S to 6S LiPo batteries) |
| Maximum Current | 90A (continuous), 120A (peak) |
| XT60 Connector Rating | 60A continuous, 100A peak |
| Output Ports | 4-8 power output pads |
| PCB Material | 2oz copper, FR4 substrate |
| Dimensions | 36mm x 50mm |
| Weight | ~15g |
The PDB XT60 typically features the following connections:
| Pin/Pad Label | Description |
|---|---|
| XT60 Input | Main power input from the battery (XT60 female) |
| + (Positive) | Positive power output pads for components |
| - (Negative) | Negative (ground) power output pads |
| ESC Pads | Dedicated pads for connecting ESCs |
| AUX Pads | Auxiliary power pads for additional devices |
While the PDB XT60 is not directly connected to an Arduino UNO, it can power peripherals like motors or sensors that the Arduino controls. Below is an example of how to use the PDB XT60 in a drone project with an Arduino UNO controlling the ESCs.
// Example Arduino code to control an ESC connected to a motor
// Ensure the ESC is powered via the PDB XT60 and connected to the Arduino PWM pin
#include <Servo.h> // Include the Servo library for ESC control
Servo esc; // Create a Servo object to control the ESC
void setup() {
esc.attach(9); // Attach the ESC signal wire to pin 9 on the Arduino
esc.writeMicroseconds(1000); // Send minimum throttle signal to arm the ESC
delay(2000); // Wait for the ESC to initialize
}
void loop() {
esc.writeMicroseconds(1500); // Set throttle to 50% (adjust as needed)
delay(5000); // Run the motor for 5 seconds
esc.writeMicroseconds(1000); // Stop the motor
delay(2000); // Wait before restarting
}
PDB Overheating
No Power to Components
Short Circuit Detected
ESCs Not Responding
Q: Can I use the PDB XT60 with a 4S LiPo battery?
A: Yes, the PDB XT60 supports 2S to 6S LiPo batteries, including 4S (14.8V nominal).
Q: How many ESCs can I connect to the PDB XT60?
A: The PDB XT60 typically has 4-8 output pads, allowing you to connect up to 4-8 ESCs, depending on the board design.
Q: Is the PDB XT60 compatible with non-XT60 batteries?
A: Yes, but you will need an adapter or solder the battery leads directly to the PDB input pads.
Q: Can I power an Arduino UNO directly from the PDB XT60?
A: No, the PDB XT60 outputs the full battery voltage, which may exceed the Arduino's input voltage range. Use a voltage regulator or a step-down converter to safely power the Arduino.
By following this documentation, you can effectively integrate the PDB XT60 into your projects for reliable and efficient power distribution.