USB-C, LiPo, 5V and 3.3V power modules

Small USB-C power modules are extremely useful for microcontroller projects. They can provide USB-C input power, charge a single-cell LiPo battery, boost battery voltage to 5V, regulate down to 3.3V, or combine several of these jobs on one board.

Important: not all USB-C LiPo modules are equal. Some are simple chargers, some are 5V boost modules, and some have proper power-path / load sharing. Always check what the module actually does before connecting a battery or project.

Contents

Basic module types

The term “USB-C LiPo module” can describe several different things. The most common types are listed below.

Module type What it does Typical use Watch out for
USB-C 5V input breakout Only exposes USB-C 5V and GND, sometimes D+ / D- Replacing a micro USB connector, powering a board from USB No battery charging, no regulation beyond USB 5V
LiPo charger Charges a 1S LiPo from USB Battery-powered projects that do not need boost output May not safely power the load while charging
LiPo charger + 5V boost Charges 1S LiPo and boosts battery voltage to 5V Small “powerbank style” MCU projects Less efficient if the MCU ultimately runs at 3.3V
LiPo charger + 3.3V regulator Charges 1S LiPo and provides regulated 3.3V ESP32, RP2040, sensors and low-power logic Check maximum current carefully
Power-path LiPo module Automatically manages USB input, battery charging and load power More reliable portable devices More expensive, but usually worth it

USB-C input basics

A simple USB-C powered device normally receives 5V from the USB-C connector. For a USB-C charger or power supply to provide 5V correctly, the module should have the proper CC resistors on the USB-C connector.

Do not assume: a board having a USB-C connector does not automatically mean it supports USB Power Delivery, 9V, 12V, 15V or 20V. Most small hobby modules are simple 5V USB-C sink boards.

For most microcontroller projects, plain USB-C 5V input is enough. USB Power Delivery trigger modules are a separate category and should only be used when the project really needs higher voltage.

Single-cell LiPo basics

Most small charger modules are intended for a single LiPo or Li-ion cell, often called 1S.

State Typical voltage
Fully charged 1S LiPo 4.2V
Nominal voltage 3.7V
Low battery region around 3.0V–3.3V
Use the correct battery type. A normal 1S LiPo charger is not for 2S, 3S or other battery packs. Do not connect multiple cells unless the module is explicitly designed for it.

5V boost modules

A 5V boost module raises the battery voltage from roughly 3.0–4.2V up to a regulated 5V output. This is useful when the project expects USB-like 5V input.

Good uses for 5V output

Efficiency note: if your whole project is really 3.3V logic, boosting the LiPo to 5V and then regulating down to 3.3V wastes power. It works, but it is not always elegant.

3.3V regulator modules

Many modern microcontrollers and sensors run at 3.3V. In that case, a LiPo charger with a 3.3V buck or buck-boost output can be a cleaner solution than making 5V first.

Good uses for regulated 3.3V

Practical rule: use 5V modules for devboards and quick prototypes. Use regulated 3.3V modules when designing a cleaner battery-powered device from scratch.

Power-path and load sharing

A proper power-path circuit can power the project from USB when USB is connected, charge the battery at the same time, and switch to battery power when USB is removed.

Some cheap charger boards claim “charge and discharge at the same time”, but that does not always mean they have a proper power-path design. For simple hobby projects this may still work, but for a reliable device, real power-path / load sharing is better.

Feature Why it matters
Power-path / load sharing Lets the device run from USB while charging the battery correctly
Battery protection Helps prevent over-discharge, over-current and short-circuit problems
Enable pin Allows the output regulator or boost converter to be switched off
Charge status pins or LEDs Useful for front panels and debugging

Common pin labels

Small modules often use short labels. The exact meaning depends on the board, but these are common interpretations.

Label Common meaning
VIN Input voltage, often USB 5V or external 5V input
VU / VBUS USB 5V directly from the USB connector
5V Regulated or boosted 5V output
3V3 / 3.3V Regulated 3.3V output
BAT Raw battery voltage, usually 3.0–4.2V for 1S LiPo
G / GND Ground
EN Enable input for regulator or boost converter
D+ / D- USB data lines, sometimes broken out for connection to a microcontroller
Always verify with a multimeter. Pin labels on cheap modules are not guaranteed to be consistent across sellers or board revisions.

Typical wiring examples

1. Simple 5V devboard project

USB-C LiPo charger with 5V boost output powering a devboard

2. Cleaner 3.3V battery-powered project

USB-C LiPo power-path charger with 3.3V regulated output powering MCU, display and sensors

3. Mixed 3.3V logic and 5V peripherals

LiPo or USB-C power module feeding a 3.3V rail for logic and a 5V rail for peripherals
Important: when 3.3V logic controls 5V peripherals, make sure signal levels are compatible. Some devices accept 3.3V logic directly, others may require level shifting.
Do not connect regulator outputs together unless the modules are explicitly designed for current sharing or power-path behavior. Two regulators fighting each other can create strange failures.

Useful modules to keep in stock

A small parts bin of power modules makes prototyping much faster.

Module type Why it is useful
USB-C 5V breakout Quick way to add USB-C power input to a project
USB-C 1S LiPo charger Basic battery charging for small devices
USB-C LiPo charger + 5V boost Powerbank-style module for devboards and 5V projects
USB-C LiPo charger + 3.3V regulator Cleaner solution for native 3.3V microcontroller projects
USB-C power-path charger module Best choice for a proper portable device
Small 3.3V buck modules Useful after a 5V module or higher-voltage input
USB-C PD trigger modules Useful for 9V, 12V, 15V or 20V projects, but not needed for basic MCU power

LiPo safety notes

LiPo batteries deserve respect. They are extremely useful, but mistakes can lead to heat, swelling, fire or destroyed electronics.

Quick summary

Last updated manually. Always check the datasheet or module schematic when available.