

The LT3042 is a high-performance, low noise, low dropout (LDO) linear regulator designed to provide a stable and precise output voltage. It features an innovative architecture with a PNP output stage, enabling high output current capability and excellent transient response. The LT3042 is ideal for applications requiring ultra-low noise and high power supply rejection, such as precision instrumentation, RF systems, and high-speed data converters.








| Parameter | Value |
|---|---|
| Input Voltage Range | 2.0V to 20V |
| Output Voltage Range | 0V to 15V (adjustable via external resistors) |
| Maximum Output Current | 200mA |
| Dropout Voltage | 350mV typical at 200mA load |
| Output Noise | 0.8µVRMS (10Hz to 100kHz) |
| Power Supply Rejection | 79dB at 1MHz |
| Operating Temperature Range | -40°C to 125°C |
| Package Options | MSOP-8, DFN-10 |
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | IN | Input voltage supply |
| 2 | GND | Ground |
| 3 | SET | Sets the output voltage via external resistor |
| 4 | OUT | Regulated output voltage |
| 5 | ILIM | Current limit adjustment |
| 6 | BYP | Bypass capacitor connection for noise reduction |
| 7 | NC | No connection (leave floating) |
| 8 | SHDN | Shutdown control (active low) |
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | IN | Input voltage supply |
| 2 | GND | Ground |
| 3 | SET | Sets the output voltage via external resistor |
| 4 | OUT | Regulated output voltage |
| 5 | ILIM | Current limit adjustment |
| 6 | BYP | Bypass capacitor connection for noise reduction |
| 7 | SHDN | Shutdown control (active low) |
| 8 | PG | Power good indicator |
| 9 | NC | No connection (leave floating) |
| 10 | NC | No connection (leave floating) |
IN pin. Ensure the input voltage is at least 350mV higher than the desired output voltage.SET pin and ground to configure the output voltage. The output voltage is determined by the formula:
[
V_{OUT} = I_{SET} \times R_{SET}
]
where ( I_{SET} ) is a fixed reference current of 100µA.BYP pin to minimize output noise.ILIM pin to set the current limit. Refer to the datasheet for resistor values corresponding to desired current limits.SHDN pin is pulled high. Pulling it low will disable the output.OUT pin for stability and noise filtering.SET and BYP pins as short as possible to minimize noise pickup.The LT3042 can be used to provide a clean 5V supply to an Arduino UNO. Below is an example circuit and Arduino code to monitor the power good (PG) signal.
IN pin of the LT3042.SET pin.OUT pin to the Arduino UNO's 5V pin.PG pin to monitor the regulator's status.// Arduino code to monitor the LT3042 Power Good (PG) signal
const int pgPin = 2; // Connect LT3042 PG pin to Arduino digital pin 2
const int ledPin = 13; // Onboard LED for status indication
void setup() {
pinMode(pgPin, INPUT); // Set PG pin as input
pinMode(ledPin, OUTPUT); // Set LED pin as output
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int pgStatus = digitalRead(pgPin); // Read the PG pin status
if (pgStatus == HIGH) {
digitalWrite(ledPin, HIGH); // Turn on LED if power is good
Serial.println("Power Good: Regulator output is stable.");
} else {
digitalWrite(ledPin, LOW); // Turn off LED if power is not good
Serial.println("Power Not Good: Check input or load conditions.");
}
delay(1000); // Wait for 1 second before checking again
}
Output Voltage is Incorrect
SET pin.Regulator Overheating
No Output Voltage
SHDN pin is pulled low or input voltage is too low.SHDN pin is pulled high and the input voltage is within the specified range.High Output Noise
BYP pin.BYP pin.Q: Can the LT3042 be used for negative voltage regulation?
A: No, the LT3042 is designed for positive voltage regulation only.
Q: What is the maximum output current of the LT3042?
A: The LT3042 can provide up to 200mA of output current.
Q: Is the LT3042 suitable for battery-powered applications?
A: Yes, its low dropout voltage and high efficiency make it suitable for battery-powered systems.
Q: Can I leave the BYP pin unconnected?
A: While the regulator will function without a bypass capacitor, connecting a capacitor to the BYP pin significantly reduces output noise.