

The 24/12V Buck Converter is a DC-DC step-down voltage regulator designed to efficiently convert a 24V input to a stable 12V output. This component is widely used in applications where a lower voltage is required to power devices from a higher voltage source. Its high efficiency ensures minimal power loss, making it ideal for battery-powered systems, automotive electronics, industrial equipment, and embedded systems.








The following table outlines the key technical details of the 24/12V Buck Converter:
| Parameter | Value | 
|---|---|
| Input Voltage Range | 18V to 26V | 
| Output Voltage | 12V ± 0.5V | 
| Maximum Output Current | 5A | 
| Efficiency | Up to 95% | 
| Switching Frequency | 150 kHz | 
| Operating Temperature | -40°C to +85°C | 
| Dimensions | 45mm x 25mm x 15mm | 
The 24/12V Buck Converter typically has four pins or terminals. The table below describes each pin:
| Pin/Terminal | Label | Description | 
|---|---|---|
| 1 | VIN | Input voltage (connect to 24V power source) | 
| 2 | GND | Ground (common ground for input and output) | 
| 3 | VOUT | Output voltage (provides 12V regulated output) | 
| 4 | EN (optional) | Enable pin (used to turn the converter on/off) | 
The 24/12V Buck Converter can be used to power an Arduino UNO from a 24V power source. Below is an example circuit and code:
// Example code to blink an LED connected to pin 13 of the Arduino UNO
// Ensure the Arduino is powered via the 24/12V Buck Converter
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:
Overheating:
Output Voltage Fluctuations:
Damaged Converter:
Q: Can I use the 24/12V Buck Converter to power multiple devices?
A: Yes, as long as the total current draw does not exceed the maximum output current of 5A.
Q: What happens if the input voltage drops below 18V?
A: The converter may fail to regulate the output voltage properly, leading to instability or a complete loss of output.
Q: Is the converter suitable for automotive applications?
A: Yes, the 24/12V Buck Converter is commonly used in automotive systems to step down truck or bus battery voltage to 12V.
Q: Can I adjust the output voltage?
A: Most 24/12V Buck Converters have a fixed output voltage. If adjustable output is required, look for a model with a potentiometer or adjustment feature.