

The DC-DC Step-Down Buck Converter Power Supply Module is a highly efficient voltage regulator designed to step down higher input voltages (e.g., 24V, 12V, or 9V) to a stable 5V output. It is capable of delivering up to 5A of current with a maximum power output of 25W. This module is widely used in applications requiring efficient power conversion, such as powering microcontrollers, single-board computers (e.g., Raspberry Pi, Arduino), USB devices, and other low-voltage electronics.








| Parameter | Value | 
|---|---|
| Input Voltage Range | 6V to 24V | 
| Output Voltage | 5V (fixed) | 
| Maximum Output Current | 5A | 
| Maximum Power Output | 25W | 
| Efficiency | Up to 96% | 
| Operating Temperature | -40°C to +85°C | 
| Dimensions | ~60mm x 21mm x 14mm | 
| Pin Name | Description | 
|---|---|
| VIN+ | Positive input voltage terminal (connect to the higher voltage source). | 
| VIN- | Negative input voltage terminal (connect to the ground of the power source). | 
| VOUT+ | Positive output voltage terminal (provides the regulated 5V output). | 
| VOUT- | Negative output voltage terminal (connect to the ground of the load). | 
Connect the Input Voltage:
VIN+ pin.VIN- pin.Connect the Output Load:
VOUT+ pin.VOUT- pin.Power On:
Verify Output:
The module can be used to power an Arduino UNO from a 12V source. Below is an example circuit and code:
VIN+ pin of the module to the positive terminal of a 12V power source.VIN- pin to the ground of the power source.VOUT+ pin to the 5V pin of the Arduino UNO.VOUT- pin to the GND pin of the Arduino UNO.// Example code to blink an LED using Arduino UNO powered by the buck converter
// Ensure the buck converter is providing a stable 5V output to the Arduino
const int ledPin = 13; // Pin connected to the onboard LED
void setup() {
  pinMode(ledPin, OUTPUT); // Set the LED pin as an 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:
Output Voltage Not 5V:
Module Not Powering the Load:
Can I adjust the output voltage?
Can I use this module to charge a USB device?
What happens if I connect a higher input voltage (e.g., 30V)?
Is the module protected against short circuits?