

The Adjustable Boost Module is a versatile power supply circuit designed to increase input voltage to a higher, adjustable output voltage. This component is widely used in applications where a stable, higher voltage is required from a lower voltage source, such as batteries or low-voltage power supplies. Its compact design and adjustable output make it ideal for powering devices like LED strips, microcontrollers, and portable electronics.








The Adjustable Boost Module is designed to provide reliable and efficient voltage conversion. Below are its key technical details:
| Parameter | Specification |
|---|---|
| Input Voltage Range | 3V to 32V |
| Output Voltage Range | 5V to 35V (adjustable) |
| Maximum Output Current | 2A (continuous), 3A (peak) |
| Efficiency | Up to 92% |
| Switching Frequency | 150 kHz |
| Dimensions | Typically 43mm x 21mm x 14mm |
| Adjustment Method | Multi-turn potentiometer |
The Adjustable Boost Module typically has four pins or terminals for input and output connections:
| Pin/Terminal | Label | Description |
|---|---|---|
| IN+ | Input + | Positive input voltage terminal |
| IN- | Input - | Negative input voltage terminal (ground) |
| OUT+ | Output + | Positive output voltage terminal |
| OUT- | Output - | Negative output voltage terminal (ground) |
Connect the Input Voltage:
IN+ pin.IN- pin.Connect the Output Load:
OUT+ pin.OUT- pin.Adjust the Output Voltage:
Power On:
The Adjustable Boost Module can be used to power an Arduino UNO from a low-voltage source, such as a 3.7V Li-ion battery. Below is an example setup:
IN+ and negative terminal to IN-.OUT+ to the Arduino's VIN pin and OUT- to the GND pin.Here is a simple Arduino code example to blink an LED, powered by the Adjustable Boost Module:
// Simple LED Blink Example
// Ensure the Adjustable Boost Module is set to output 9V for the Arduino UNO.
const int ledPin = 13; // Built-in LED pin on Arduino UNO
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:
Output Voltage Not Adjustable:
Overheating:
Module Not Powering On:
Q: Can I use the Adjustable Boost Module to power a 12V LED strip from a 5V USB power source?
A: Yes, as long as the input current from the USB source is sufficient to meet the power requirements of the LED strip. Ensure the output voltage is set to 12V.
Q: What happens if I exceed the maximum output current?
A: Exceeding the maximum output current can cause the module to overheat or shut down. Prolonged overcurrent conditions may damage the module.
Q: Can I use this module with a solar panel?
A: Yes, the module can be used with a solar panel, provided the panel's output voltage and current are within the module's input range.
Q: Is the output voltage stable under varying loads?
A: The module is designed to provide stable output voltage under normal operating conditions. However, significant load variations may cause minor fluctuations.
By following this documentation, you can effectively use the Adjustable Boost Module in your projects and troubleshoot common issues.