

The DC-DC Step Up Boost Power Converter (MT3608), manufactured by Dorhea, is a compact and efficient electronic module designed to increase a lower input voltage to a higher output voltage. This boost converter is based on the MT3608 chip and is widely used in applications requiring voltage step-up, such as powering devices from batteries, portable electronics, and DIY projects.








The following table outlines the key technical details of the MT3608 DC-DC Step Up Boost Power Converter:
| Parameter | Specification |
|---|---|
| Input Voltage Range | 2V to 24V |
| Output Voltage Range | 5V to 28V (adjustable via potentiometer) |
| Maximum Output Current | 2A (recommended ≤ 1.5A for stable operation) |
| Efficiency | Up to 93% |
| Switching Frequency | 1.2 MHz |
| Dimensions | 36mm x 17mm x 6mm |
| Operating Temperature | -40°C to +85°C |
The MT3608 module has the following pin layout:
| Pin Name | Description |
|---|---|
| VIN | Positive input voltage terminal (2V to 24V) |
| GND | Ground terminal (common ground for input and output) |
| VOUT | Positive output voltage terminal (5V to 28V) |
Connect the Input Voltage:
Adjust the Output Voltage:
Connect the Load:
Power On:
The MT3608 can be used to power an Arduino UNO from a 3.7V lithium-ion battery. Below is an example circuit and Arduino code:
// Example code to blink an LED using an Arduino UNO powered by the MT3608
// Ensure the MT3608 output is set to 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:
Output Voltage Not Adjustable:
Overheating:
Load Not Powering On:
Q1: Can the MT3608 be used to power a Raspberry Pi?
A1: Yes, but ensure the output voltage is set to 5V and the current demand does not exceed 1.5A.
Q2: Is the MT3608 protected against reverse polarity?
A2: No, the module does not have built-in reverse polarity protection. Always double-check your connections.
Q3: Can I use the MT3608 with a solar panel?
A3: Yes, as long as the solar panel's output voltage is within the 2V to 24V range and provides sufficient current.
Q4: How do I measure the output voltage?
A4: Use a multimeter to measure the voltage across the VOUT and GND pins.
By following this documentation, you can effectively use the Dorhea MT3608 DC-DC Step Up Boost Power Converter in your projects.