

The PDB CC3D--BEC/ZMR is a specialized printed circuit board (PCB) designed for use with CC3D flight controllers, commonly utilized in drones and robotics applications. This power distribution board (PDB) simplifies the connection of multiple components, such as motors, sensors, and batteries, while providing regulated power through its built-in Battery Eliminator Circuit (BEC). Its compact design and robust functionality make it an essential component for building and maintaining multirotor drones and other robotic systems.








The PDB CC3D--BEC/ZMR is designed to handle high current loads while providing regulated power for flight controllers and other peripherals. Below are the key technical details:
| Parameter | Value |
|---|---|
| Input Voltage Range | 7V - 26V (2S to 6S LiPo) |
| Maximum Current Handling | 100A (total) |
| BEC Output Voltage | 5V and 12V |
| BEC Output Current | 3A (5V) / 3A (12V) |
| Dimensions | 36mm x 50mm |
| Weight | ~12g |
| PCB Material | FR4 (Flame Retardant) |
The PDB CC3D--BEC/ZMR features multiple solder pads and connectors for easy integration with other components. Below is the pin configuration:
| Pin/Pad Label | Description |
|---|---|
| BAT+ | Positive terminal for battery input |
| BAT- | Negative terminal for battery input |
| 5V | Regulated 5V output for peripherals |
| 12V | Regulated 12V output for peripherals |
| GND | Ground connection for all components |
| Pad Label | Description |
|---|---|
| M1, M2, M3... | Motor power output pads (positive/negative pairs) |
| Pin/Pad Label | Description |
|---|---|
| FC+ | Positive power input for flight controller |
| FC- | Ground connection for flight controller |
BAT+ pad and the negative terminal to the BAT- pad. Ensure the battery voltage is within the supported range (7V - 26V).M1, M2, etc.). Ensure correct polarity for each motor.FC+ and FC- pads to the power input pins of the CC3D flight controller.5V and 12V output pads to power additional components, such as sensors, cameras, or LEDs.GND pads on the PDB.While the PDB CC3D--BEC/ZMR is primarily designed for drones, it can also be used to power an Arduino UNO in robotics projects. Below is an example of how to connect the PDB to an Arduino UNO:
5V output pad on the PDB to the 5V pin on the Arduino UNO.GND pad on the PDB to the GND pin on the Arduino UNO.// Example code to control a motor using Arduino UNO and PDB CC3D--BEC/ZMR
const int motorPin = 9; // PWM pin connected to motor ESC signal wire
void setup() {
pinMode(motorPin, OUTPUT); // Set motor pin as output
}
void loop() {
// Gradually increase motor speed
for (int speed = 0; speed <= 255; speed++) {
analogWrite(motorPin, speed); // Send PWM signal to motor
delay(20); // Wait 20ms before increasing speed
}
// Gradually decrease motor speed
for (int speed = 255; speed >= 0; speed--) {
analogWrite(motorPin, speed); // Send PWM signal to motor
delay(20); // Wait 20ms before decreasing speed
}
}
No Power Output:
Overheating:
Voltage Drop:
Short Circuit:
Q: Can I use this PDB with other flight controllers besides CC3D?
A: Yes, the PDB CC3D--BEC/ZMR is compatible with most flight controllers that require 5V or 12V power inputs.
Q: What type of battery should I use with this PDB?
A: The PDB supports 2S to 6S LiPo batteries (7V - 26V). Ensure the battery's capacity and discharge rate meet your drone's requirements.
Q: Can I power multiple peripherals simultaneously?
A: Yes, as long as the total current draw does not exceed the BEC's output current rating (3A for 5V and 3A for 12V).
Q: How do I secure the PDB to my drone frame?
A: Use nylon standoffs or double-sided adhesive tape to mount the PDB securely to the frame, ensuring it is insulated from conductive surfaces.