

The USB Type-C 5V 2A Step-Up Boost Converter is an electronic module designed to increase a lower input voltage to a stable 5V output while delivering up to 2A of current. This component is commonly used to power USB devices, such as smartphones, tablets, and small electronics, from lower voltage sources like batteries or solar panels. Its compact design and USB Type-C interface make it ideal for portable and embedded applications.








| Parameter | Value |
|---|---|
| Input Voltage Range | 2.5V to 4.5V |
| Output Voltage | 5V (regulated) |
| Maximum Output Current | 2A |
| Efficiency | Up to 92% |
| Connector Type | USB Type-C (output) |
| Dimensions | Typically 25mm x 15mm x 5mm |
| Operating Temperature | -40°C to 85°C |
| Pin Name | Description |
|---|---|
| VIN+ | Positive input voltage terminal (connect to the positive side of the source). |
| VIN- | Negative input voltage terminal (connect to the ground of the source). |
| USB Type-C | Output port providing 5V regulated power. |
Connect the Input Voltage Source:
VIN+ pin. VIN- pin. Connect the Load:
Power On:
The USB Type-C 5V 2A Step-Up Boost Converter can be used to power an Arduino UNO from a 3.7V lithium-ion battery. Here's how to set it up:
VIN+ pin and the negative terminal to the VIN- pin.Below is a simple Arduino sketch to blink an LED while powered by the boost converter:
// This code blinks an LED connected to pin 13 of the Arduino UNO.
// Ensure the Arduino is powered via the USB Type-C boost converter.
void setup() {
pinMode(13, OUTPUT); // Set pin 13 as an output pin
}
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:
Output Voltage Drops Under Load:
Module Overheats:
Device Does Not Charge:
Can I use this module with a 1.5V battery?
No, the input voltage must be at least 2.5V for proper operation.
Is the output voltage adjustable?
No, the output voltage is fixed at 5V.
Can I use this module to power a Raspberry Pi?
It depends on the Raspberry Pi model. Most Raspberry Pi boards require more than 2A under load, so this module may not be suitable.
Does the module have built-in short-circuit protection?
Some versions of this module include basic protection features, but it is recommended to verify the specific model's datasheet for details.