

The TPS7A4001 is a low-dropout (LDO) linear voltage regulator designed to deliver a stable output voltage with low noise and high power supply rejection. It is ideal for high-performance applications requiring precise voltage regulation and noise-sensitive environments. With its wide input voltage range and adjustable output voltage, the TPS7A4001 is versatile and suitable for a variety of use cases.








| Parameter | Value |
|---|---|
| Input Voltage Range | 7 V to 100 V |
| Output Voltage Range | 1.2 V to 90 V (adjustable) |
| Output Current | Up to 50 mA |
| Dropout Voltage | 350 mV (typical at 50 mA load) |
| Output Voltage Accuracy | ±1% |
| Power Supply Rejection | 72 dB at 1 kHz |
| Quiescent Current | 25 µA (typical) |
| Operating Temperature Range | -40°C to +125°C |
| Package Options | SOT-223, TO-252 |
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | IN | Input voltage pin. Connect to the power source. |
| 2 | GND | Ground pin. Connect to system ground. |
| 3 | OUT | Regulated output voltage pin. Connect to load. |
| Tab | GND | Thermal pad. Connect to ground for heat dissipation. |
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | IN | Input voltage pin. Connect to the power source. |
| 2 | GND | Ground pin. Connect to system ground. |
| 3 | OUT | Regulated output voltage pin. Connect to load. |
| Tab | GND | Thermal pad. Connect to ground for heat dissipation. |
The TPS7A4001 can be used to power an Arduino UNO by regulating a high input voltage (e.g., 24 V) down to 5 V. Below is an example circuit and Arduino code:
// Example code to blink an LED using Arduino UNO powered by TPS7A4001
// Ensure the TPS7A4001 is providing a stable 5V output to the Arduino
const int ledPin = 13; // Pin connected to the onboard LED
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an output
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
No Output Voltage:
Output Voltage Instability:
Overheating:
Output Voltage Too Low:
Q1: Can the TPS7A4001 be used with a battery as the input source?
A1: Yes, the TPS7A4001 can regulate voltage from a battery as long as the input voltage is within the specified range (7 V to 100 V).
Q2: What happens if the input voltage drops below 7 V?
A2: The regulator may stop functioning correctly, and the output voltage may become unstable or drop below the desired level.
Q3: Can I use electrolytic capacitors instead of ceramic capacitors?
A3: While electrolytic capacitors can be used, ceramic capacitors are recommended due to their low ESR and better performance in high-frequency applications.
Q4: Is the TPS7A4001 suitable for powering microcontrollers?
A4: Yes, the TPS7A4001 is suitable for powering microcontrollers, especially in noise-sensitive applications, as it provides a stable and low-noise output voltage.