

The Ultra-Small DC-DC 5V 3A Buck Step Down Module by Robu is a compact and efficient power converter designed to step down a higher input voltage to a stable 5V output. With a maximum current output of 3A, this module is ideal for powering low-voltage devices such as microcontrollers, sensors, and other electronic components. Its small size and high efficiency make it suitable for portable and space-constrained applications.








| Parameter | Value |
|---|---|
| Input Voltage Range | 6V to 24V |
| Output Voltage | 5V (fixed) |
| Maximum Output Current | 3A |
| Efficiency | Up to 95% |
| Switching Frequency | 340 kHz |
| Operating Temperature | -40°C to +85°C |
| Dimensions | 22mm x 17mm x 4mm |
| Weight | ~2 grams |
| Pin Name | Pin Type | Description |
|---|---|---|
| VIN | Input | Connect to the positive terminal of the input voltage source (6V-24V). |
| GND | Ground | Connect to the ground of the input voltage source. |
| VOUT | Output | Provides a stable 5V output for powering external devices. |
Connect the Input Voltage:
VIN pin.GND pin.Connect the Output Load:
VOUT pin.GND pin.Verify Connections:
Power On:
The module can be used to power an Arduino UNO from a 12V battery. Below is an example circuit and code:
VIN pin of the module.GND pin of the module.VOUT pin of the module to the 5V pin of the Arduino UNO.GND pin of the module to the GND pin of the Arduino UNO.// Example code to blink an LED connected to Arduino UNO
// Ensure the Arduino is powered via the DC-DC module's 5V output
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
}
| Issue | Possible Cause | Solution |
|---|---|---|
| No output voltage | Incorrect wiring or loose connections | Verify all connections and polarity. |
| Output voltage is unstable | High-frequency noise or insufficient filtering | Add external capacitors (e.g., 10µF and 0.1µF) at input and output. |
| Module overheats | Excessive load current or poor ventilation | Reduce load current or improve airflow. |
| Device connected to output is not working | Output voltage is too low or too high | Verify input voltage and ensure it is within range. |
Can this module be used with a 24V input?
Is the output voltage adjustable?
Can I use this module to charge a USB device?
Does the module have reverse polarity protection?
What is the efficiency of the module?
This concludes the documentation for the Ultra-Small DC-DC 5V 3A Buck Step Down Module by Robu. For further assistance, refer to the manufacturer's datasheet or contact technical support.