

The TPS2113A is a power multiplexer manufactured by Texas Instruments (TI). It is designed to seamlessly switch between two power sources, ensuring a reliable and uninterrupted power supply to the load. This component is particularly useful in applications where redundancy or automatic power source selection is required. With its low on-resistance and fast switching times, the TPS2113A is ideal for high-efficiency systems that demand minimal voltage drop.








| Parameter | Value |
|---|---|
| Input Voltage Range | 2.8 V to 5.5 V |
| Output Voltage Range | 2.8 V to 5.5 V |
| Maximum Output Current | 1.25 A |
| On-Resistance (RON) | 84 mΩ (typical) |
| Switching Time | 50 µs (typical) |
| Control Logic Voltage | 0 V to 5.5 V |
| Operating Temperature Range | -40°C to 85°C |
| Package Options | 8-pin SOIC (D) and 8-pin VSSOP (DGK) |
The TPS2113A is available in an 8-pin SOIC or VSSOP package. Below is the pinout and description:
| Pin Number | Pin Name | Type | Description |
|---|---|---|---|
| 1 | IN1 | Power Input | Primary power input source. Connect to the first power supply. |
| 2 | IN2 | Power Input | Secondary power input source. Connect to the second power supply. |
| 3 | GND | Ground | Ground reference for the device. |
| 4 | EN | Input | Enable pin. Logic high enables the device; logic low disables it. |
| 5 | CT | Capacitor | Connect a capacitor to set the switchover delay time. |
| 6 | OUT | Power Output | Output to the load. |
| 7 | SEL | Input | Select pin. Logic high selects IN2; logic low selects IN1. |
| 8 | STAT | Output | Status pin. Indicates which input is supplying power (logic high for IN2). |
Power Source Connections:
Output Connection:
Control Logic:
Capacitor Selection:
Status Monitoring:
The following example demonstrates how to use the TPS2113A to switch between USB power and a battery for an Arduino UNO:
// Define the SEL pin connected to the Arduino
const int selPin = 7; // GPIO pin 7 controls the power source selection
void setup() {
pinMode(selPin, OUTPUT); // Set SEL pin as an output
digitalWrite(selPin, LOW); // Start with IN1 (USB power) as the active source
}
void loop() {
// Example: Switch to IN2 (battery power) after 10 seconds
delay(10000); // Wait for 10 seconds
digitalWrite(selPin, HIGH); // Switch to IN2 (battery power)
// Example: Switch back to IN1 (USB power) after another 10 seconds
delay(10000); // Wait for 10 seconds
digitalWrite(selPin, LOW); // Switch back to IN1 (USB power)
}
No Output Voltage:
Frequent Switching Between Inputs:
Excessive Voltage Drop:
STAT Pin Not Responding:
Q1: Can the TPS2113A handle higher voltages than 5.5 V?
No, the maximum input voltage for the TPS2113A is 5.5 V. Exceeding this limit may damage the device.
Q2: What happens if both power sources are unavailable?
If neither IN1 nor IN2 is within the valid voltage range, the output will be disabled, and no power will be supplied to the load.
Q3: Can I use the TPS2113A for 3.3 V systems?
Yes, the TPS2113A supports input and output voltages as low as 2.8 V, making it suitable for 3.3 V systems.
Q4: How do I prioritize one power source over the other?
Use the SEL pin to select the preferred power source. For example, set SEL to logic low to prioritize IN1 or logic high to prioritize IN2.
This concludes the documentation for the TPS2113A power multiplexer. For more details, refer to the official datasheet provided by Texas Instruments at TI.com.