The DC-DC Step Up SX1308 Adjustable Power Supply Module is a compact and efficient power booster designed to convert a lower DC voltage to a higher DC voltage. It is capable of outputting up to 28V with a maximum current of 2A, making it suitable for a wide range of applications. The module operates at a high switching frequency of 1.2MHz, ensuring minimal ripple and high efficiency.
Below are the key technical details of the SX1308 module:
Parameter | Value |
---|---|
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 | Input voltage pin. Connect the lower DC voltage source (e.g., battery or power supply). |
GND | Ground pin. Connect to the ground of the input and output circuits. |
VOUT | Output voltage pin. Provides the boosted DC voltage. |
Connect the Input Voltage:
VIN
pin.GND
pin.Connect the Output Voltage:
VOUT
pin to the load (e.g., LED strip, motor, or other devices).Adjust the Output Voltage:
Power On:
The SX1308 module can be used to power an Arduino UNO from a lower voltage source, such as a 3.7V lithium-ion battery. Below is an example circuit and code:
VIN
pin of the SX1308.GND
pin of the SX1308.VOUT
pin of the SX1308 to the 5V pin of the Arduino UNO.GND
pin of the SX1308 to the GND pin of the Arduino UNO.// Example code to blink an LED using Arduino UNO powered by the SX1308 module
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:
Output Voltage Not Adjustable:
Module Overheating:
Load Not Powering On:
Q: Can the SX1308 module step down voltage?
A: No, the SX1308 is a step-up (boost) converter and cannot step down voltage. Use a buck converter for step-down applications.
Q: What is the efficiency of the module?
A: The module has an efficiency of up to 93%, depending on the input voltage, output voltage, and load.
Q: Can I use the SX1308 to power a Raspberry Pi?
A: While the SX1308 can provide 5V output, it may not handle the high current requirements of a Raspberry Pi. Use a module with a higher current rating for such applications.
Q: Is the module protected against reverse polarity?
A: No, the SX1308 does not have reverse polarity protection. Ensure correct polarity to avoid damage.