

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 hobbyists and professionals alike.








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) |
| Maximum Output Current | 2A (dependent on input voltage) |
| 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 (connects to inductor) |
| 2 | GND | Ground |
| 3 | FB | Feedback pin (used to set output voltage) |
| 4 | EN | Enable pin (active high, enables the converter) |
| 5 | VIN | Input voltage supply |
| 6 | VOUT | Output voltage (connects to load) |
| Pin Name | Description |
|---|---|
| VIN | Input voltage (connect to power source) |
| GND | Ground |
| VOUT | Output voltage (connect to load) |
| ADJ | Adjustable potentiometer (sets output voltage) |
Connect the Input Voltage:
VIN pin.GND pin.Set the Output Voltage:
VOUT pin while adjusting.Connect the Load:
VOUT pin.GND pin.Enable the Converter:
EN pin is pulled high to enable the converter.The MT3608 can be used to power an Arduino UNO from a low-voltage battery. Below is an example:
VIN and GND pins of the MT3608 module.VOUT and GND pins of the MT3608 to the 5V and GND pins of the Arduino UNO.Here is a simple Arduino code to blink an LED:
// Blink an LED connected to pin 13 of the Arduino UNO
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output
}
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:
EN pin is pulled high (if using the IC).Output Voltage is Unstable:
Overheating:
Q: Can the MT3608 step down voltage?
A: No, the MT3608 is a step-up (boost) converter and cannot step down voltage. For step-down applications, use a buck converter.
Q: How do I calculate the output voltage?
A: For the MT3608 IC, the output voltage is set using a resistor divider connected to the FB pin. For the module, adjust the potentiometer while monitoring the output voltage with a multimeter.
Q: Can I use the MT3608 with a solar panel?
A: Yes, the MT3608 can be used with a solar panel as long as the input voltage is within the specified range. Ensure the solar panel provides sufficient current for your load.
Q: What is the efficiency of the MT3608?
A: The MT3608 has an efficiency of up to 93%, depending on the input voltage, output voltage, and load conditions.