

The HiLetgo Mini DC-DC Converter (Part ID: B0CDWW4XHL) is a compact and efficient step-down voltage regulator designed to convert input voltages ranging from 12V to 24V into selectable output voltages of 2.5V, 3.3V, 5V, 9V, or 12V. With a maximum output current of 3A, this module is ideal for powering low-voltage devices such as microcontrollers, sensors, and other electronic components.








| Parameter | Value |
|---|---|
| Input Voltage Range | 12V to 24V |
| Output Voltage Options | 2.5V, 3.3V, 5V, 9V, 12V (selectable) |
| Maximum Output Current | 3A |
| Efficiency | Up to 95% (depending on input/output ratio) |
| Operating Temperature | -40°C to +85°C |
| Dimensions | 22mm x 17mm x 4mm |
| Weight | ~5g |
| Pin Name | Description |
|---|---|
| VIN+ | Positive input voltage terminal (connect to 12-24V DC source) |
| VIN- | Negative input voltage terminal (connect to ground of the DC source) |
| VOUT+ | Positive output voltage terminal (connect to the load's positive terminal) |
| VOUT- | Negative output voltage terminal (connect to the load's ground terminal) |
| Voltage Selector | A small onboard switch or jumper to select the desired output voltage |
VIN+ and VIN- pins. Ensure the input voltage is within the specified range to avoid damage.VOUT+ and VOUT- pins. Ensure the load does not exceed the maximum current rating of 3A.To power an Arduino UNO with 5V using this module:
VOUT+ to the Arduino's 5V pin and VOUT- to the GND pin.VIN+ and VIN-.Here is an example Arduino sketch to blink an LED while powered by the module:
// Simple LED Blink Example
// Ensure the module is set to 5V output before powering the Arduino UNO.
const int ledPin = 13; // Built-in LED pin on Arduino UNO
void setup() {
pinMode(ledPin, OUTPUT); // Set LED pin as 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:
Incorrect Output Voltage:
Module Not Working:
Q: Can this module be used with a 9V battery?
A: No, the input voltage must be between 12V and 24V. A 9V battery is insufficient.
Q: Can I use this module to power multiple devices simultaneously?
A: Yes, as long as the total current draw does not exceed 3A.
Q: Is the output voltage stable under varying loads?
A: Yes, the module is designed to provide a stable output voltage with high efficiency.
Q: Can I use this module in automotive applications?
A: Yes, it is suitable for automotive use, provided the input voltage is within the specified range.