

The TPS 61023 is a high-efficiency step-up (boost) DC-DC converter designed to provide a regulated output voltage from a lower input voltage. It is ideal for applications requiring efficient power conversion, such as battery-powered devices, portable electronics, and IoT systems. With its wide input voltage range, adjustable output voltage, and minimal external component requirements, the TPS 61023 offers a compact and reliable solution for power management.








| Parameter | Value |
|---|---|
| Input Voltage Range | 0.5 V to 5.5 V |
| Output Voltage Range | 1.8 V to 5.5 V (adjustable) |
| Maximum Output Current | Up to 2 A (depending on input/output conditions) |
| Efficiency | Up to 90% |
| Switching Frequency | 2.4 MHz |
| Quiescent Current (Iq) | 0.5 µA (typical) |
| Package Type | 2.0 mm × 1.5 mm WSON-6 |
The TPS 61023 is available in a 6-pin WSON package. Below is the pinout and description:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | SW | Switch pin. Connect to the inductor and diode. |
| 2 | GND | Ground pin. Connect to system ground. |
| 3 | FB | Feedback pin. Connect to a resistor divider to set the output voltage. |
| 4 | EN | Enable pin. Drive high to enable the device, low to disable it. |
| 5 | VIN | Input voltage pin. Connect to the input power source. |
| 6 | VOUT | Output voltage pin. Connect to the output capacitor and load. |
Input and Output Capacitors:
Inductor Selection:
Setting the Output Voltage:
Enable Pin:
Thermal Considerations:
Below is a typical application circuit for the TPS 61023:
VIN ----+----[10 µF]----+---- VIN (Pin 5)
| |
[Inductor] |
| |
SW (Pin 1) |
| |
[Diode] |
| |
+----[22 µF]---- VOUT (Pin 6)
|
FB (Pin 3) <-- Resistor Divider (R1, R2)
|
EN (Pin 4) <-- Enable Signal
|
GND (Pin 2) ---- System Ground
The TPS 61023 can be used to power an Arduino UNO from a low-voltage source. Below is an example code to toggle the EN pin using a digital output pin:
// Define the pin connected to the EN pin of TPS 61023
const int enablePin = 7;
void setup() {
// Set the enable pin as an output
pinMode(enablePin, OUTPUT);
// Enable the TPS 61023 by setting the pin HIGH
digitalWrite(enablePin, HIGH);
}
void loop() {
// Keep the TPS 61023 enabled
delay(1000);
// Optional: Disable the TPS 61023 for power-saving
// Uncomment the lines below to toggle the enable pin
/*
digitalWrite(enablePin, LOW); // Disable the TPS 61023
delay(1000); // Wait for 1 second
digitalWrite(enablePin, HIGH); // Re-enable the TPS 61023
*/
}
Output Voltage is Incorrect:
Device Overheating:
No Output Voltage:
High Noise or Ripple:
Q1: Can the TPS 61023 operate with a single AA battery?
A1: Yes, the TPS 61023 can operate with input voltages as low as 0.5 V, making it suitable for single-cell battery applications.
Q2: What is the maximum output current the TPS 61023 can provide?
A2: The maximum output current depends on the input voltage and output voltage. Refer to the datasheet for detailed current capability under specific conditions.
Q3: How do I calculate the inductor value?
A3: Use the recommended range of 1 µH to 2.2 µH. For detailed calculations, refer to the datasheet's design guidelines.
Q4: Can I use the TPS 61023 to power a 5 V device from a 3.3 V source?
A4: Yes, the TPS 61023 can step up a 3.3 V input to a 5 V output, provided the load current is within the device's capability.
This concludes the documentation for the TPS 61023. For further details, refer to the official datasheet and application notes.