

The LM4128-2.5VREF is a precision voltage reference designed to provide a stable and accurate output voltage of 2.5V. It is characterized by its low output noise, low temperature coefficient, and excellent long-term stability. These features make it an ideal choice for precision analog circuits, as well as for use as a reference voltage in Analog-to-Digital Converters (ADCs) and Digital-to-Analog Converters (DACs).








| Parameter | Value |
|---|---|
| Output Voltage | 2.5V |
| Output Voltage Tolerance | ±0.1% |
| Temperature Coefficient | 10 ppm/°C (typical) |
| Output Current Capability | ±5 mA |
| Supply Voltage Range | 2.7V to 5.5V |
| Quiescent Current | 160 µA (typical) |
| Output Noise (10 Hz to 10 kHz) | 20 µV RMS (typical) |
| Operating Temperature Range | -40°C to +125°C |
| Package Options | SOT-23-5 |
The LM4128-2.5VREF is available in a 5-pin SOT-23 package. The pinout is as follows:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | VOUT | Precision 2.5V output voltage |
| 2 | GND | Ground (0V reference) |
| 3 | NC | No connection (leave unconnected) |
| 4 | VIN | Input supply voltage (2.7V to 5.5V) |
| 5 | SHDN | Shutdown pin (active low, optional use) |
The LM4128-2.5VREF can be used as a reference voltage for the Arduino UNO's ADC. Below is an example of how to connect and use it:
// Example code to use LM4128-2.5VREF as an external reference for Arduino ADC
void setup() {
// Set the ADC reference to external (using LM4128's 2.5V output)
analogReference(EXTERNAL);
// Initialize serial communication for debugging
Serial.begin(9600);
}
void loop() {
// Read analog input from pin A0
int sensorValue = analogRead(A0);
// Convert the ADC value to voltage (2.5V reference, 10-bit ADC)
float voltage = sensorValue * (2.5 / 1023.0);
// Print the voltage to the Serial Monitor
Serial.print("Voltage: ");
Serial.print(voltage);
Serial.println(" V");
delay(1000); // Wait for 1 second before the next reading
}
No Output Voltage:
Output Voltage is Incorrect:
High Noise on Output:
Device Overheating:
Q1: Can I use the LM4128-2.5VREF with a 3.3V power supply?
A1: Yes, the LM4128 operates with input voltages as low as 2.7V, so it is compatible with a 3.3V supply.
Q2: What happens if the SHDN pin is left floating?
A2: The SHDN pin has an internal pull-up resistor, so leaving it floating will enable the device by default.
Q3: Can the LM4128-2.5VREF drive multiple loads?
A3: Yes, as long as the total load current does not exceed ±5 mA and the loads are properly decoupled.
Q4: Is the LM4128-2.5VREF suitable for battery-powered applications?
A4: Yes, its low quiescent current (160 µA typical) makes it ideal for low-power applications.