

The TPS63802, manufactured by W, is a high-efficiency, step-down DC-DC converter designed for low-power applications. It is optimized for portable electronics and battery-powered devices, offering a wide input voltage range, low quiescent current, and adjustable output voltage. This component is ideal for applications requiring efficient power conversion and compact design.








| Parameter | Value |
|---|---|
| Input Voltage Range | 1.3 V to 5.5 V |
| Output Voltage Range | 1.8 V to 5.2 V (adjustable) |
| Maximum Output Current | 2 A |
| Efficiency | Up to 95% |
| Quiescent Current | 15 µA (typical) |
| Switching Frequency | 2.4 MHz |
| Package | 2.0 mm × 1.5 mm, 10-pin WSON |
The TPS63802 is available in a 10-pin WSON package. Below is the pinout and description:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | VIN | Input voltage supply (1.3 V to 5.5 V). Connect to the power source. |
| 2 | EN | Enable pin. Drive high to enable the device, low to disable it. |
| 3 | FB | Feedback pin for output voltage regulation. Connect to a resistor divider. |
| 4 | VOUT | Regulated output voltage. Connect to the load. |
| 5 | GND | Ground. Connect to system ground. |
| 6 | PG | Power Good indicator. Open-drain output. |
| 7 | MODE/SYNC | Mode selection or external clock synchronization. |
| 8 | NC | No connection. Leave floating or connect to ground. |
| 9 | SW | Switching node. Connect to the inductor. |
| 10 | AGND | Analog ground. Connect to system ground. |
The TPS63802 can be used to power an Arduino UNO from a battery source. Below is an example circuit and Arduino code to monitor the Power Good (PG) signal.
// Arduino code to monitor the Power Good (PG) signal from TPS63802
const int pgPin = 2; // PG pin connected to Arduino digital pin 2
void setup() {
pinMode(pgPin, INPUT); // Set PG pin as input
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int pgStatus = digitalRead(pgPin); // Read the PG pin status
if (pgStatus == HIGH) {
// PG is high, output voltage is within regulation
Serial.println("Power Good: Output voltage is stable.");
} else {
// PG is low, output voltage is not within regulation
Serial.println("Warning: Output voltage is out of regulation!");
}
delay(1000); // Wait for 1 second before checking again
}
No Output Voltage
Output Voltage is Incorrect
Device Overheating
PG Pin Always Low
Q1: Can the TPS63802 operate with a 1.5 V battery?
A1: Yes, the TPS63802 supports input voltages as low as 1.3 V, making it suitable for single-cell batteries.
Q2: What is the maximum efficiency of the TPS63802?
A2: The TPS63802 can achieve up to 95% efficiency under optimal conditions.
Q3: Can I synchronize the TPS63802 with an external clock?
A3: Yes, the MODE/SYNC pin allows synchronization with an external clock signal.
Q4: Is the TPS63802 suitable for powering microcontrollers?
A4: Yes, the adjustable output voltage and high efficiency make it ideal for powering microcontrollers like Arduino or ESP32.
Q5: What is the recommended inductor value?
A5: A typical inductor value of 1 µH to 2.2 µH is recommended, depending on the application requirements.