

The 5V Step Up/Down is a DC-DC converter designed to regulate a 5V input voltage by either increasing (stepping up) or decreasing (stepping down) it to a desired output voltage. This versatile component is ideal for applications requiring a stable voltage supply, regardless of fluctuations in the input voltage. It is commonly used in battery-powered devices, portable electronics, and projects requiring efficient power management.








The following table outlines the key technical details of the 5V Step Up/Down converter:
| Parameter | Value |
|---|---|
| Input Voltage Range | 2V to 24V |
| Output Voltage Range | 1.8V to 24V (adjustable via potentiometer) |
| Output Current | Up to 2A (depending on input/output voltage) |
| Efficiency | Up to 90% (varies with load and voltage) |
| Switching Frequency | 150 kHz |
| Operating Temperature | -40°C to +85°C |
| Dimensions | Typically 22mm x 17mm x 4mm |
The 5V Step Up/Down module typically has the following pinout:
| Pin Name | Description |
|---|---|
| VIN | Input voltage (connect to power source) |
| GND | Ground (common ground for input and output) |
| VOUT | Regulated output voltage (connect to load) |
| ADJ | Adjustment pin (used to set the output voltage) |
Connect the Input Voltage:
Connect the Ground:
Set the Output Voltage:
Connect the Load:
The 5V Step Up/Down can be used to power an Arduino UNO from a battery. Below is an example circuit and code:
// Example code to blink an LED using an Arduino UNO powered by the 5V Step Up/Down
// Ensure the output voltage of the module is set to 5V before connecting 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:
Unstable Output Voltage:
Output Voltage Not Adjustable:
Q: Can this module step up and step down simultaneously?
A: Yes, the module automatically adjusts to step up or step down the input voltage to maintain the desired output voltage.
Q: What happens if the input voltage exceeds 24V?
A: Exceeding the input voltage range can damage the module. Always ensure the input voltage is within the specified range.
Q: Can I use this module to power a Raspberry Pi?
A: Yes, but ensure the output voltage is set to 5V and the current requirement of the Raspberry Pi is within the module's capacity.
Q: Is the module suitable for audio applications?
A: While it can be used, the switching frequency (150 kHz) may introduce noise in sensitive audio circuits. Use additional filtering if needed.