

The DC-DC Boost Module (MT3608), manufactured by AliExpress, is a compact and efficient power converter designed to step up (boost) an input voltage to a higher output voltage. This module is based on the MT3608 chip and is widely used in applications where a stable, higher voltage is required from a lower voltage source, such as batteries. It is ideal for powering devices that require a higher voltage than the available input source.








Below are the key technical details of the MT3608 DC-DC Boost Module:
| Parameter | Value |
|---|---|
| Input Voltage Range | 2V to 24V |
| Output Voltage Range | 5V to 28V (adjustable via potentiometer) |
| Maximum Output Current | 2A (depends on input voltage and load) |
| Efficiency | Up to 93% (depending on load and input) |
| Switching Frequency | 1.2 MHz |
| Dimensions | 36mm x 17mm x 6mm |
The MT3608 DC-DC Boost Module has the following pinout:
| Pin Name | Description |
|---|---|
| VIN | Positive input voltage terminal (connect to the power source). |
| GND | Ground terminal (common ground for input and output). |
| VOUT | Positive output voltage terminal (connect to the load). |
| Potentiometer | Adjustable screw to set the output voltage (clockwise to increase voltage). |
Connect the Input Voltage:
VIN pin.GND pin.Connect the Output Voltage:
VOUT pin to the positive terminal of your load.GND pin to the negative terminal of your load.Adjust the Output Voltage:
Power On:
The MT3608 can be used to power an Arduino UNO from a 3.7V Li-ion battery. Below is an example circuit and code:
VIN and negative terminal to GND.VOUT pin to the Arduino's 5V pin and GND to the Arduino's GND.// Example code to blink an LED using Arduino UNO powered by MT3608
// Ensure the MT3608 is set to output 5V before connecting to the Arduino.
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:
Overheating:
Output Voltage Fluctuations:
Cannot Achieve Desired Output Voltage:
Q: Can I use the MT3608 to power a Raspberry Pi?
A: Yes, but ensure the output voltage is set to 5V and the current demand does not exceed 2A.
Q: Is the module protected against reverse polarity?
A: No, the MT3608 does not have reverse polarity protection. Always double-check your connections.
Q: Can I use this module with a solar panel?
A: Yes, as long as the solar panel's output voltage and current are within the module's input range.
Q: How do I know if the module is damaged?
A: If there is no output voltage despite correct connections and input voltage, the module may be damaged. Check for visible signs of damage, such as burnt components.
By following this documentation, you can effectively use the MT3608 DC-DC Boost Module in your projects.