Codey OnlineArduino & ESP32 component library › MT3608 2A Max DC-DC Step Up Power Module Booster Power Module
MT3608 2A Max DC-DC Step Up Power Module Booster Power Module
Other

MT3608 2A Max DC-DC Step Up Power Module Booster Power Module

The MT3608 is a small DC-DC boost (step-up) converter module used to increase an input DC voltage to a higher adjustable DC output. It typically connects to a DC input at the input terminals and provides a boosted output at the output terminals, with an onboard adjustment control to fine-tune the voltage. Modules like this are commonly used in Arduino/ESP32 projects to power circuits from batteries or lower-voltage sources.

Width: 14.1 mm

Pinout — MT3608 2A Max DC-DC Step Up Power Module Booster Power Module

Pin Signal Description
VIN- ground Input negative terminal; connect to source/battery ground.
VIN+ power Input positive terminal; connect the lower DC supply voltage to be boosted.
VOUT- ground Output negative terminal; common ground return for the boosted output.
VOUT+ power Boosted adjustable positive output voltage for powering the load.

Example wiring diagram — MT3608 2A Max DC-DC Step Up Power Module Booster Power Module

From To Wire
board:5V x1:VIN+ red
board:GND x1:VIN- black
x1:VOUT+ board:VIN red
x1:VOUT- board:GND.1 black

Example Arduino code — MT3608 2A Max DC-DC Step Up Power Module Booster Power Module

This example was written and compile-checked for the arduino-uno. Codey Online adapts it to any other supported board for you.

void setup() {
  Serial.begin(9600);
  while (!Serial) {
    ;
  }

  Serial.println("MT3608 boost converter canonical example");
  Serial.println("Arduino Uno 5V -> MT3608 VIN+ / GND -> VIN-");
  Serial.println("MT3608 VOUT+ is shown connected to Arduino VIN, and VOUT- to GND.");
  Serial.println("This component is passive, so no control code is required.");
}

void loop() {
  // The MT3608 module is a power converter with no digital interface.
  // In a real project, it would simply provide a boosted supply voltage.
  delay(1000);
}

Related components

4-Channel Optoisolator Board

4-Channel Optoisolator Board

AD9850 DDS Signal Generator Module

AD9850 DDS Signal Generator Module

Adjustable Step-down Module 3-40VDC  1.5-35VDC LM2596

Adjustable Step-down Module 3-40VDC 1.5-35VDC LM2596

Breadboard 400 pin

Breadboard 400 pin

Build your Arduino or ESP32 project with AI

Describe what you want to build. Codey Online writes the code, draws the wiring diagram, compiles it and flashes your board straight from the browser.

Start for free