

The 12S MATEK Servo PDB (Manufacturer Part ID: Servo PDB, w/ 12A BEC 9-55V to 5/6/8V) is a high-performance power distribution board designed for multi-rotor and fixed-wing aircraft. It is capable of handling up to 12S LiPo batteries and provides efficient power delivery to servos and other onboard components. With its integrated 12A BEC (Battery Eliminator Circuit), the board offers selectable output voltages of 5V, 6V, or 8V, making it versatile for a wide range of applications.








| Parameter | Specification |
|---|---|
| Input Voltage Range | 9V to 55V (up to 12S LiPo) |
| BEC Output Voltage Options | 5V, 6V, or 8V (selectable via jumper) |
| BEC Output Current | 12A continuous, 15A peak |
| Dimensions | 50mm x 50mm |
| Weight | 15g |
| Operating Temperature | -40°C to 85°C |
| Mounting Hole Spacing | 30.5mm x 30.5mm (standard M3 holes) |
The 12S MATEK Servo PDB features multiple input and output connections for easy integration into your system. Below is the pin configuration:
| Pin Name | Description |
|---|---|
| VIN+ | Positive input terminal for LiPo battery (9-55V) |
| VIN- | Negative input terminal for LiPo battery |
| Pin Name | Description |
|---|---|
| VOUT+ | Positive output terminal for servos and devices |
| VOUT- | Negative output terminal for servos and devices |
| BEC Voltage | Jumper pins to select BEC output voltage (5V/6V/8V) |
| Feature | Description |
|---|---|
| LED Indicator | Indicates power status and BEC operation |
| Mounting Holes | Standard M3 holes for secure installation |
Connect the Input Power:
VIN+ pin.VIN- pin.Select the BEC Output Voltage:
Connect the Output Devices:
VOUT+ pin.VOUT- pin.Secure the Board:
Power On:
The 12S MATEK Servo PDB can be used to power an Arduino UNO and servos in a robotics project. Below is an example setup:
VOUT+ to the Arduino's VIN pin.VOUT- to the Arduino's GND pin.VOUT+ and VOUT-.#include <Servo.h> // Include the Servo library
Servo myServo; // Create a Servo object
void setup() {
myServo.attach(9); // Attach the servo to pin 9
// Move the servo to the initial position
myServo.write(90); // Set servo to 90 degrees
}
void loop() {
// Sweep the servo from 0 to 180 degrees
for (int pos = 0; pos <= 180; pos += 1) {
myServo.write(pos); // Move servo to the current position
delay(15); // Wait 15ms for the servo to reach the position
}
// Sweep the servo back from 180 to 0 degrees
for (int pos = 180; pos >= 0; pos -= 1) {
myServo.write(pos); // Move servo to the current position
delay(15); // Wait 15ms for the servo to reach the position
}
}
No Power Output:
Overheating:
Servos Not Working:
LED Indicator Not Lit:
Q: Can I use this PDB with a 4S LiPo battery?
A: Yes, the PDB supports input voltages from 9V to 55V, so a 4S LiPo (14.8V nominal) is compatible.
Q: How do I change the BEC output voltage?
A: Use the onboard jumper to select between 5V, 6V, or 8V. Refer to the silkscreen on the board for jumper positions.
Q: What happens if I exceed the 12A current limit?
A: Exceeding the current limit may cause the BEC to overheat or shut down. Ensure your devices' total current draw stays within the specified limits.
Q: Can I use this PDB for non-aircraft applications?
A: Yes, the PDB can be used in robotics, RC cars, or any project requiring efficient power distribution and a high-current BEC.