

The iFlight BLITZ BEC 5V/12V is a compact and efficient Battery Eliminator Circuit (BEC) designed to provide a stable output voltage of either 5V or 12V. This component is widely used in remote control (RC) applications, such as drones, airplanes, and cars, to power servos, receivers, flight controllers, and other onboard electronics directly from a LiPo battery. By regulating the battery's voltage, the BEC ensures reliable operation of sensitive electronics while protecting them from voltage fluctuations.








The iFlight BLITZ BEC 5V/12V is designed to handle a wide range of input voltages and provide a stable output for various electronic components. Below are the key technical details:
| Parameter | Value |
|---|---|
| Input Voltage Range | 7V - 26V (2S to 6S LiPo) |
| Output Voltage Options | 5V or 12V (selectable) |
| Maximum Output Current | 3A (continuous) |
| Efficiency | Up to 95% |
| Dimensions | 18mm x 13mm x 5mm |
| Weight | 2g |
| Pin Name | Description |
|---|---|
| VIN | Input voltage pin. Connect to the positive terminal of the LiPo battery. |
| GND | Ground pin. Connect to the negative terminal of the LiPo battery. |
| VOUT | Output voltage pin. Provides regulated 5V or 12V, depending on the setting. |
| SEL | Voltage selection pin. Use a solder bridge or jumper to select 5V or 12V. |
Determine the Required Output Voltage: Decide whether your application requires 5V or 12V. Use the SEL pin to configure the output voltage:
Connect the Input Voltage:
Connect the Output Voltage:
Power On the Circuit:
The iFlight BLITZ BEC can be used to power an Arduino UNO from a LiPo battery. Below is an example setup:
Here is a simple Arduino code example to blink an LED while powered by the BEC:
// Blink an LED connected to pin 13 of the Arduino UNO
// Ensure the BEC is providing 5V to the Arduino's 5V pin
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output
}
void loop() {
digitalWrite(13, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(13, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
No Output Voltage:
Cause: Incorrect SEL pin configuration.
Solution: Verify the SEL pin is correctly set to 5V or 12V.
Cause: Loose or incorrect connections.
Solution: Check all connections, ensuring VIN and GND are properly connected to the battery.
Overheating:
Output Voltage Fluctuations:
Connected Device Not Powering On:
Q: Can I use the BEC to power multiple devices simultaneously?
A: Yes, as long as the total current draw does not exceed 3A.
Q: How do I switch between 5V and 12V output?
A: Use the SEL pin to configure the output voltage. Refer to the pin configuration table for details.
Q: Is the BEC compatible with 1S LiPo batteries?
A: No, the minimum input voltage is 7V, which is higher than the voltage of a 1S LiPo battery.
Q: Can I use the BEC with non-LiPo power sources?
A: Yes, as long as the input voltage is within the 7V to 26V range.