

The MINIBOOST 5V @ 1A is a compact DC-DC boost converter module designed and manufactured by Adafruit. It utilizes the TPS61023 IC to efficiently step up input voltages to a stable 5V output, capable of delivering up to 1A of current. This module is ideal for powering small electronic devices, microcontrollers, and low-power peripherals from lower voltage sources such as batteries.








The following table outlines the key technical details of the MINIBOOST 5V @ 1A module:
| Parameter | Value |
|---|---|
| Input Voltage Range | 1.8V to 5.5V |
| Output Voltage | 5V (regulated) |
| Maximum Output Current | 1A |
| Efficiency | Up to 90% (depending on load) |
| Switching Frequency | 1.5 MHz |
| Dimensions | 11.5mm x 17.5mm x 4mm |
| Weight | ~1g |
The MINIBOOST module has four pins, as described in the table below:
| Pin Name | Description |
|---|---|
| VIN | Input voltage pin. Connect to a power source (e.g., battery) within 1.8V-5.5V. |
| GND | Ground pin. Connect to the ground of your circuit. |
| VOUT | Regulated 5V output pin. Connect to the load or device requiring 5V power. |
| EN | Enable pin. Pull high to enable the module, or low to disable it. |
Connect the Input Voltage (VIN):
VIN pin.Connect the Ground (GND):
GND pin to the ground of your circuit.Connect the Output Voltage (VOUT):
VOUT pin.Enable the Module:
EN pin high (connect to VIN) to enable the module.EN pin low (connect to GND).The following example demonstrates how to power an Arduino UNO using the MINIBOOST module and a 3.7V LiPo battery.
VIN pin of the MINIBOOST.GND pin of the MINIBOOST.VOUT pin of the MINIBOOST to the 5V pin of the Arduino UNO.GND pin of the MINIBOOST to the GND pin of the Arduino UNO.// Example code to blink an LED on pin 13 of Arduino UNO
// This demonstrates the Arduino running on power supplied by the MINIBOOST module.
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 not pulled high.EN pin is connected to VIN to enable the module.Output Voltage Drops Under Load:
Module Overheating:
Noise or Instability in Output Voltage:
VOUT pin to stabilize the output.Q: Can I use the MINIBOOST to power a Raspberry Pi?
A: The MINIBOOST is not recommended for powering a Raspberry Pi, as it typically requires more than 1A of current under load.
Q: What happens if the input voltage drops below 1.8V?
A: The module will stop boosting and the output voltage will drop. Ensure the input voltage remains within the specified range.
Q: Can I leave the EN pin floating?
A: No, the EN pin must be explicitly pulled high to enable the module or low to disable it. Leaving it floating may result in unpredictable behavior.