

The 5V Boost Converter (Manufacturer: Adafruit, Part ID: TPS61023) is a DC-DC step-up converter designed to increase a lower input voltage to a stable 5V output. This component is ideal for powering devices that require a consistent 5V supply, even when the input voltage is lower, such as in battery-powered applications. Its compact design and high efficiency make it a popular choice for portable electronics, IoT devices, and embedded systems.








The following table outlines the key technical details of the Adafruit TPS61023 5V Boost Converter:
| Parameter | Value |
|---|---|
| Input Voltage Range | 0.5V to 5.5V |
| Output Voltage | 5V (fixed) |
| Output Current | Up to 1A (depending on input voltage) |
| Efficiency | Up to 90% |
| Switching Frequency | 1.5 MHz |
| Operating Temperature | -40°C to +125°C |
| Dimensions | 17.8mm x 12.7mm x 4.5mm |
The 5V Boost Converter typically has the following pinout:
| Pin Name | Description |
|---|---|
| VIN | Input voltage pin. Connect to the power source (e.g., battery). |
| GND | Ground pin. Connect to the ground of the circuit. |
| VOUT | Output voltage pin. Provides the boosted 5V output. |
| EN | Enable pin. Pull high to enable the converter; pull low to disable it. |
| FB | Feedback pin. Used for internal voltage regulation (not typically user-altered). |
Connect the Input Voltage (VIN):
Connect the Ground (GND):
Connect the Output Voltage (VOUT):
Enable the Converter:
Add Decoupling Capacitors:
The following example demonstrates how to power an Arduino UNO using the 5V Boost Converter and a 3.7V Li-ion battery.
// Example code to blink an LED on pin 13 of Arduino UNO
// This demonstrates the Arduino running on power supplied by the 5V 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 is Unstable:
Excessive Heat:
Low Efficiency:
Q: Can I use the 5V Boost Converter with a 1.5V AA battery?
A: Yes, the TPS61023 can boost a 1.5V input to 5V. However, the output current will be limited due to the low input voltage.
Q: Is the converter suitable for powering USB devices?
A: Yes, as long as the device's current requirement does not exceed the converter's maximum output current (1A).
Q: Can I leave the EN pin unconnected?
A: No, leaving the EN pin unconnected may cause the converter to remain disabled. Pull it high to enable the converter.
Q: What happens if the input voltage exceeds 5.5V?
A: Exceeding 5.5V can damage the converter. Always ensure the input voltage stays within the specified range.
This concludes the documentation for the Adafruit TPS61023 5V Boost Converter.