Documentation

ShillehTek MT3608 DC-DC Step Up Boost Converter 2A Adjustable Power Module | ShillehTek Product Manual
Documentation / ShillehTek MT3608 DC-DC Step Up Boost Converter 2A Adjustable Power Module | ShillehTek Product Manual

ShillehTek MT3608 DC-DC Step Up Boost Converter 2A Adjustable Power Module | ShillehTek Product Manual

Overview

The MT3608 is a tiny step-up DC-DC boost converter that takes a low input voltage (2V to 24V) and boosts it up to a higher output (up to 28V), with up to 2A of output current. Use it to run a 5V Arduino from a single 3.7V LiPo battery, drive 12V LED strips from a 5V USB power bank, or power 9V devices from 4 AA batteries — anywhere your input voltage is lower than what your load needs.

The on-board trim potentiometer lets you set the output voltage from input voltage up to 28V. Turn it clockwise to increase output, counter-clockwise to decrease. The MT3608 chip itself runs at 1.2 MHz switching frequency, so the inductor and capacitors stay small — the entire board is about 36 × 17 mm.

Efficiency is typically 93% at moderate loads. With 2A output capability, it's well-suited for portable battery-powered projects, robotics, and bench supply augmentation. The four corner pads are VOUT+, VOUT-, VIN+, VIN- — solder wires or use as breadboard pins.

At a Glance

Input Voltage
2V - 24V
Output Voltage
5V - 28V (adjustable)
Max Current
2A
Efficiency
~93%
Switching Freq
1.2 MHz
Adjustment
On-board trim pot

Specifications

Parameter Value
Topology Step-up (boost) DC-DC converter
Chip MT3608
Input Voltage 2V to 24V DC
Output Voltage Adjustable from V_in up to 28V
Output Current Up to 2A (depends on input voltage)
Switching Frequency 1.2 MHz (fixed)
Efficiency ~93% typical
Adjustment Multi-turn trim potentiometer
Output Ripple ~50 mV typical
Operating Temperature -40°C to +85°C
Pin Count 4 (VIN+, VIN-, VOUT+, VOUT-)
Dimensions ~36 × 17 × 14 mm

Pinout Diagram

MT3608 DC-DC step-up boost converter module pinout diagram showing the four corner pads: VOUT+ (positive output, top left), VOUT- (negative output, bottom left), VIN+ (positive input, top right), and VIN- (negative input, bottom right), with the blue trim potentiometer for output voltage adjust on the left side, the inductor in the center, and the MT3608 chip on the right side of the PCB

Wiring Guide

Setting Output Voltage (Critical First Step)

Always set the output voltage BEFORE connecting your load — connecting an unknown output to a load can fry it. Use a multimeter and a non-conductive (ceramic or plastic) screwdriver.

Step Action
1 Connect VIN+ and VIN- to your source (battery, USB, etc.)
2 Leave VOUT+ and VOUT- disconnected (no load)
3 Set multimeter to DC volts, probe + to VOUT+, − to VOUT-
4 Slowly turn the trim pot until you read the desired output voltage
5 Disconnect input, then wire your load to VOUT+ and VOUT-
Warning: The trim pot is multi-turn — it takes ~15 full rotations to traverse the entire range. Turn slowly. Don't force it past the stop or you'll damage the pot. CW raises output, CCW lowers it.

Boosting a 3.7V LiPo to 5V

Common use case: power a 5V device from a 3.7V LiPo battery. Set the trim pot to output 5.0V, then wire the battery to VIN and your device to VOUT.

From / To Connection
3.7V LiPo (+) VIN+
3.7V LiPo (-) VIN-
VOUT+ (5V) 5V input of your device
VOUT- GND of your device

Powering an Arduino from 9V

Boost 4xAA batteries (~6V) to 9V to feed Arduino's barrel jack (which expects 7-12V).

From / To Connection
4xAA pack (+) VIN+
4xAA pack (-) VIN-
VOUT+ (set to 9V) Arduino VIN pin (or center pin of barrel jack)
VOUT- Arduino GND

Code Examples

The MT3608 is a passive power-conversion module — no microcontroller code is needed. Configure the output voltage with the trim pot once, and the converter just does its job.

Sizing Calculations

boost-math.txt
Power balance for a boost converter (assuming 90% efficiency):

  V_in × I_in × 0.9 = V_out × I_out

Solve for input current:

  I_in = (V_out × I_out) / (V_in × 0.9)

Examples:
  3.7V LiPo → 5V at 1A:  I_in = 5 × 1 / (3.7 × 0.9) = ~1.5A from battery
  3.7V LiPo → 12V at 0.5A: I_in = 12 × 0.5 / (3.7 × 0.9) = ~1.8A
  6V (4xAA) → 9V at 0.5A: I_in = 9 × 0.5 / (6 × 0.9) = ~0.83A

Always size your input source for the calculated input current.

Frequently Asked Questions

Can it step DOWN voltage?
No — the MT3608 is boost-only. If your input is higher than your desired output (12V → 5V, for example), use a buck converter like the LM2596 or MP1584. Trying to "step down" with a boost converter just passes the input voltage straight through and wastes the chip.
Why does the chip get hot?
Even at 90%+ efficiency, 10% of the power becomes heat. Boosting 3.7V → 12V at 1A means the chip dissipates about 1.3W of heat. That's enough to warm a 36×17mm PCB. For sustained 1.5A+ output, add a small heatsink to the chip and provide some airflow.
Can it boost 5V USB to 12V?
Yes, but watch the input current. 5V × USB-2.0's 500mA = 2.5W input. After 90% efficiency, you get ~2.25W out, which means at 12V you can sustain only ~190mA. For higher loads, use a USB-PD source or a 5V 2A wall adapter.
My output won't go above input voltage. What's wrong?
This is normal at startup or under heavy load — the converter passes input straight through (minus a diode drop) until you turn the trim pot to set a higher target. Make sure you're turning the pot CLOCKWISE many turns (it's multi-turn, ~15 rotations end-to-end) and that you have a multimeter on the output to confirm you're actually changing the value.
Output voltage drops under load — is that normal?
Some droop is normal — at 90% efficiency, doubling the load roughly doubles the input current draw, which sags the input voltage and consequently the output. For sensitive loads, add a 220-470µF capacitor across VOUT+ and VOUT-, and don't push the converter past 70% of its rated 2A.

Related Tutorials