

The DC-DC USB Step Up & Step Down Adjustable Converter Module is a versatile power converter designed to regulate voltage levels efficiently. It can both increase (step up) and decrease (step down) input voltage to provide a stable output, making it ideal for powering USB devices from a wide range of voltage sources. This module is particularly useful in applications where the input voltage may vary, such as battery-powered systems or solar panels.








The module typically has the following input and output connections:
| Pin/Port Name | Type | Description |
|---|---|---|
VIN+ |
Input | Positive input voltage terminal (3V to 15V DC). |
VIN- |
Input | Negative input voltage terminal (ground). |
USB Output |
Output | Standard USB Type-A port for 5V output (fixed or adjustable via potentiometer). |
Potentiometer |
Adjustment | Used to adjust the output voltage (if adjustable output is supported). |
Connect the Input Voltage:
VIN+ terminal and the ground to the VIN- terminal.Adjust the Output Voltage (if applicable):
Connect the Load:
Power On:
To power an Arduino UNO using this module:
VIN+ and VIN- terminals.Here is an example Arduino sketch to test the setup:
// Example Arduino code to blink an LED
// This code assumes the Arduino UNO is powered via the USB output of the module.
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output for the onboard LED
}
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:
Overheating:
Output Voltage Fluctuations:
USB Device Not Charging:
Can this module charge a smartphone?
Is the output voltage always 5V?
Can I use this module with a solar panel?
What happens if I reverse the input polarity?