

The DC-DC Step Up SX1308 Adjustable Power Supply Module is a compact and efficient power booster designed to convert a lower DC input voltage to a higher DC output voltage. With an adjustable output range of up to 28V and a maximum current output of 2A, this module is ideal for powering devices that require higher voltages than the input source can provide. Operating at a high switching frequency of 1.2MHz, the SX1308 ensures minimal ripple and high efficiency.








Below are the key technical details of the SX1308 module:
| Parameter | Specification |
|---|---|
| Input Voltage Range | 2V to 24V |
| Output Voltage Range | 2V to 28V (adjustable via potentiometer) |
| Maximum Output Current | 2A |
| Switching Frequency | 1.2MHz |
| Efficiency | Up to 93% |
| Dimensions | 22mm x 17mm x 4mm |
The SX1308 module has the following pin layout:
| Pin Name | Description |
|---|---|
| VIN | Positive input voltage terminal (connect to the DC power source). |
| GND | Ground terminal (common ground for input and output). |
| VOUT | Positive output voltage terminal (connect to the load). |
| ADJ | Adjustment pin (connected to the onboard potentiometer for voltage adjustment). |
Connect the Input Voltage:
VIN pin.GND pin.Connect the Output Voltage:
VOUT pin.GND pin.Adjust the Output Voltage:
VOUT to ensure it matches your desired value.Power On:
The SX1308 can be used to power an Arduino UNO or other microcontrollers. Below is an example of how to use the module to power an Arduino UNO with a 9V output:
VOUT pin of the SX1308 to the Arduino's VIN pin.GND pin of the SX1308 to the Arduino's GND pin.Here is a simple Arduino code example to blink an LED while powered by the SX1308:
// Simple LED Blink Example
// This code blinks an LED connected to pin 13 of the Arduino UNO.
// Ensure the SX1308 module is providing a stable 9V to the Arduino's VIN pin.
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
}
No Output Voltage:
Output Voltage Not Adjustable:
Module Overheating:
Voltage Drops Under Load:
Q: Can the SX1308 be used to power a Raspberry Pi?
A: Yes, but ensure the output voltage is set to 5V and the input source can provide sufficient current for both the SX1308 and the Raspberry Pi.
Q: What is the efficiency of the module?
A: The SX1308 has an efficiency of up to 93%, depending on the input voltage, output voltage, and load.
Q: Can I use the SX1308 to charge batteries?
A: While possible, it is not recommended unless you have additional circuitry to regulate the charging process and prevent overcharging.
Q: How do I measure the output voltage?
A: Use a multimeter to measure the voltage across the VOUT and GND pins while the module is powered on.
By following this documentation, you can effectively use the SX1308 module in your projects and troubleshoot common issues.