

The BUCK DC/DC converter, manufactured by HUAREW, is a highly efficient electronic component designed to step down voltage while stepping up current. This type of DC-DC converter is widely used in applications where a stable, lower voltage is required from a higher input voltage source. Its compact design and high efficiency make it ideal for battery-powered devices, power supply units, and embedded systems.








The following table outlines the key technical details of the HUAREW BUCK DC/DC converter:
| Parameter | Value |
|---|---|
| Input Voltage Range | 4.5V to 40V |
| Output Voltage Range | 1.25V to 37V |
| Output Current | Up to 3A |
| Efficiency | Up to 92% |
| Switching Frequency | 150 kHz |
| Operating Temperature | -40°C to +85°C |
| Dimensions | 22mm x 17mm x 4mm |
The HUAREW BUCK DC/DC converter typically has the following pin configuration:
| Pin Name | Description |
|---|---|
| VIN | Input voltage (connect to power source) |
| GND | Ground (common ground for input and output) |
| VOUT | Output voltage (connect to load) |
| ADJ | Adjustable pin (used to set output voltage) |
Connect the Input Voltage (VIN):
Set the Output Voltage (VOUT):
Connect the Load:
Add External Components (Optional):
The HUAREW BUCK DC/DC converter can be used to power an Arduino UNO from a higher voltage source, such as a 12V battery. Below is an example circuit and Arduino code:
// Example code to blink an LED connected to pin 13 of the Arduino UNO
// Ensure the Arduino is powered via the BUCK DC/DC 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:
Output Voltage is Incorrect:
Overheating:
Noise or Instability in Output Voltage:
Q: Can the BUCK DC/DC converter be used with a 24V input?
A: Yes, the converter supports input voltages up to 40V, so 24V is within the acceptable range.
Q: How do I calculate the resistor values for the ADJ pin?
A: Use the formula:
[
V_{OUT} = V_{REF} \times \left(1 + \frac{R_2}{R_1}\right)
]
where ( V_{REF} ) is typically 1.25V, and ( R_1 ) and ( R_2 ) are the resistors in the voltage divider.
Q: Can this converter power a Raspberry Pi?
A: Yes, as long as the output voltage is set to 5V and the current requirement (typically 2.5A for a Raspberry Pi 4) is within the 3A limit.
Q: Is reverse polarity protection included?
A: No, the BUCK DC/DC converter does not include reverse polarity protection. Use a diode in series with the input to prevent damage.