

The LT3045 is a high-performance, low noise, low dropout linear voltage regulator designed to deliver a stable and precise output voltage. It features an impressive power supply rejection ratio (PSRR), making it ideal for noise-sensitive applications. With its wide input voltage range, low quiescent current, and excellent thermal performance, the LT3045 is well-suited for high-precision analog circuits, RF systems, medical devices, and test equipment.








The LT3045 offers robust performance and flexibility. Below are its key technical specifications:
| Parameter | Value |
|---|---|
| Input Voltage Range | 2.8V to 20V |
| Output Voltage Range | 0V to 15V (adjustable) |
| Maximum Output Current | 500mA |
| Dropout Voltage | 260mV at 500mA |
| Output Voltage Noise | 0.8µVRMS (10Hz to 100kHz) |
| Power Supply Rejection Ratio | 79dB at 1MHz |
| Quiescent Current | 2.5mA (typical) |
| Operating Temperature Range | -40°C to 125°C |
| Package Options | DFN (10-lead), MSOP (10-lead) |
The LT3045 is available in a 10-lead DFN or MSOP package. Below is the pin configuration and description:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | IN | Input voltage pin. Connect to the input power supply. |
| 2 | OUT | Regulated output voltage pin. Connect to the load. |
| 3 | SET | Voltage set pin. Connect a resistor to ground to set the output voltage. |
| 4 | GND | Ground pin. Connect to system ground. |
| 5 | BYP | Bypass pin. Connect a capacitor to reduce output noise. |
| 6 | ILIM | Current limit pin. Connect a resistor to set the current limit. |
| 7 | PG | Power good pin. Indicates when the output voltage is in regulation. |
| 8 | NC | No connection. Leave this pin unconnected. |
| 9 | SHDN | Shutdown pin. Pull low to disable the regulator. |
| 10 | NC | No connection. Leave this pin unconnected. |
Input and Output Capacitors:
Setting the Output Voltage:
Bypass Capacitor:
Current Limit:
Power Good Signal:
Shutdown Control:
The LT3045 can be used to provide a clean 5V supply for an Arduino UNO. Below is an example circuit and Arduino code:
// Example code to read an analog sensor using the LT3045 as a power supply
// The LT3045 provides a clean 5V output to power the Arduino UNO and sensor.
const int sensorPin = A0; // Analog pin connected to the sensor
int sensorValue = 0; // Variable to store the sensor reading
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
sensorValue = analogRead(sensorPin); // Read the sensor value
Serial.print("Sensor Value: ");
Serial.println(sensorValue); // Print the sensor value to the Serial Monitor
delay(1000); // Wait for 1 second before the next reading
}
Output Voltage is Incorrect:
Regulator Overheating:
No Output Voltage:
High Output Noise:
Q: Can the LT3045 be used for negative voltage regulation?
A: No, the LT3045 is designed for positive voltage regulation only.
Q: What is the maximum output current of the LT3045?
A: The LT3045 can supply a maximum output current of 500mA.
Q: How can I reduce output noise further?
A: Use a high-quality bypass capacitor (e.g., 10nF ceramic) on the BYP pin and ensure proper PCB layout to minimize noise coupling.
Q: Is the LT3045 suitable for battery-powered applications?
A: Yes, its low quiescent current makes it ideal for battery-powered devices.