

The Matek 12S-PRO BEC is a high-performance battery eliminator circuit (BEC) designed to provide a stable and reliable output voltage for powering servos, flight controllers, and other onboard electronics. It is specifically engineered for use in multi-rotor drones and fixed-wing aircraft, where high-voltage battery packs (up to 12S LiPo) are commonly used. By stepping down the voltage from the battery pack, the Matek 12S-PRO BEC eliminates the need for separate power sources, reducing weight and complexity in your setup.








The Matek 12S-PRO BEC has a simple pin layout for easy integration into your circuit. Below is the pin configuration:
| Pin Name | Description |
|---|---|
| VIN+ | Positive input voltage terminal (connect to the positive terminal of the battery). |
| VIN- | Negative input voltage terminal (connect to the negative terminal of the battery). |
| VOUT+ | Positive output voltage terminal (connect to the load or electronics to be powered). |
| VOUT- | Negative output voltage terminal (connect to the ground of the load or electronics). |
| ADJ | Voltage adjustment pin (used to set the output voltage when in adjustable mode). |
Connect the Input Voltage:
Set the Output Voltage:
Connect the Load:
Verify Connections:
Power On:
The Matek 12S-PRO BEC can be used to power an Arduino UNO from a high-voltage battery pack. Below is an example setup:
Here is a simple Arduino code example to blink an LED while powered by the Matek 12S-PRO BEC:
// Simple LED blink example for Arduino UNO
// Ensure the Matek 12S-PRO BEC is set to 5V output before connecting to the Arduino.
const int ledPin = 13; // Pin connected to the onboard LED
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an output
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
No Output Voltage:
Overheating:
Output Voltage Fluctuations:
Short Circuit Protection Triggered:
Q: Can the Matek 12S-PRO BEC power multiple devices simultaneously?
A: Yes, as long as the total current draw does not exceed the maximum continuous current rating of 5A.
Q: How do I know if the BEC is overheating?
A: The BEC includes over-temperature protection, which will shut it down if it overheats. If this occurs, reduce the load or improve cooling.
Q: Can I use the adjustable output mode for sensitive electronics?
A: Yes, but always verify the output voltage with a multimeter before connecting sensitive devices to avoid damage.
Q: Is the Matek 12S-PRO BEC compatible with 12S LiPo batteries?
A: Yes, it supports input voltages up to 60V, making it compatible with 12S LiPo battery packs.
This concludes the documentation for the Matek 12S-PRO BEC.