

The Step Up Module 5V/8V/9V/12V 1.5A is a DC-DC boost converter designed to increase a lower input voltage (e.g., 5V) to a higher, selectable output voltage (e.g., 8V, 9V, or 12V). This module is ideal for applications where a stable, higher voltage is required from a lower voltage source, such as USB power supplies, batteries, or solar panels. It is compact, efficient, and capable of delivering up to 1.5A of output current.








| Parameter | Value |
|---|---|
| Input Voltage Range | 2.5V to 6V |
| Output Voltage Options | 5V, 8V, 9V, 12V (selectable) |
| Maximum Output Current | 1.5A |
| Efficiency | Up to 92% (depending on load) |
| Dimensions | ~36mm x 17mm x 14mm |
| Operating Temperature | -40°C to +85°C |
| Pin Name | Description |
|---|---|
| VIN | Positive input voltage (2.5V to 6V) |
| GND | Ground (common for input and output) |
| VOUT | Positive output voltage (5V, 8V, 9V, or 12V) |
| SEL | Voltage selection pin (used to set output voltage) |
Connect the Input Voltage:
VIN pin.GND pin.Set the Output Voltage:
SEL pin to configure the desired output voltage. This is typically done by connecting the SEL pin to a specific voltage level or using a jumper (refer to the module's datasheet for exact configuration).Connect the Load:
VOUT pin.GND pin.Power On:
The Step Up Module can be used to power an Arduino UNO from a 3.7V Li-ion battery by boosting the voltage to 5V. Below is an example of how to connect the module:
VIN pin and the negative terminal to the GND pin.SEL pin.VOUT pin to the Arduino's 5V pin and the GND pin to the Arduino's GND pin.Here is a simple Arduino sketch to blink an LED while powered by the Step Up Module:
// Simple LED Blink Example
// This code blinks an LED connected to pin 13 of the Arduino UNO.
// Ensure the Step Up Module is providing a stable 5V to the Arduino.
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output pin
}
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
}
| Issue | Possible Cause | Solution |
|---|---|---|
| No output voltage | Incorrect input voltage | Ensure input voltage is within 2.5V-6V. |
| Output voltage is unstable | Load exceeds maximum current rating | Reduce the load to below 1.5A. |
| Module overheats | High current draw or poor ventilation | Add a heatsink or improve airflow. |
| Incorrect output voltage | SEL pin not configured properly | Verify and adjust the SEL pin settings. |
Can I use this module with a 3.7V Li-ion battery?
What happens if I exceed the maximum input voltage?
Can I use this module to power a Raspberry Pi?
How do I select the output voltage?
SEL pin to set the desired output voltage.By following this documentation, you can effectively use the Step Up Module 5V/8V/9V/12V 1.5A in your projects.