

The MT3608 is a high-efficiency step-up (boost) DC-DC converter designed to increase an input voltage to a higher output voltage. It is widely used in applications where a stable, higher voltage is required from a lower voltage source, such as in battery-powered devices. The MT3608 is compact, cost-effective, and highly efficient, making it a popular choice for portable electronics, LED drivers, and charging circuits.








The MT3608 is available as a module or as an IC. Below are the key technical details:
| Parameter | Value |
|---|---|
| Input Voltage Range | 2V to 24V |
| Output Voltage Range | Up to 28V (adjustable via potentiometer) |
| Maximum Output Current | 2A (dependent on input voltage and load) |
| Efficiency | Up to 93% |
| Switching Frequency | 1.2 MHz |
| Operating Temperature | -40°C to +85°C |
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | SW | Switching node (connect to inductor) |
| 2 | GND | Ground |
| 3 | FB | Feedback pin (connect to voltage divider) |
| 4 | EN | Enable pin (active high) |
| 5 | VIN | Input voltage |
| 6 | VOUT | Output voltage |
| Pin Name | Description |
|---|---|
| VIN | Input voltage (2V to 24V) |
| GND | Ground |
| VOUT | Output voltage (adjustable via potentiometer) |
VIN pin and the negative terminal to the GND pin.VOUT pin and the negative terminal to the GND pin.The MT3608 can be used to power an Arduino UNO from a low-voltage source, such as a 3.7V lithium-ion battery. Below is an example circuit and code:
VIN pin of the MT3608 module and the negative terminal to GND.VOUT pin of the MT3608 to the 5V pin of the Arduino UNO and GND to GND.// Example code to blink an LED using Arduino UNO powered by MT3608
// Ensure the MT3608 output is set to 5V before connecting to Arduino
const int ledPin = 13; // Built-in LED pin on Arduino UNO
void setup() {
pinMode(ledPin, OUTPUT); // Set LED pin as output
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn LED on
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn LED off
delay(1000); // Wait for 1 second
}
No Output Voltage
Output Voltage Not Adjustable
Overheating
Output Voltage Drops Under Load
Can the MT3608 be used to charge batteries?
What is the maximum efficiency of the MT3608?
Can I use the MT3608 to power a Raspberry Pi?
Is the MT3608 protected against short circuits?