

The ADM1087 is a precision voltage reference and monitor designed to provide a stable and accurate output voltage for a wide range of electronic applications. This component ensures reliable voltage levels, making it ideal for use in systems requiring precise voltage regulation and monitoring. Its compact design and high accuracy make it suitable for power management, battery-operated devices, and industrial control systems.








The ADM1087 is available in a 5-pin SOT-23 package. The pinout and descriptions are as follows:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | VCC | Power supply input (1.6 V to 5.5 V). |
| 2 | GND | Ground connection. |
| 3 | OUT | Precision voltage reference output (0.6 V typical). |
| 4 | EN | Enable input. High to enable the output. |
| 5 | NC | No connection (leave floating or connect to GND). |
The ADM1087 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 ADM1087 as an external reference for Arduino ADC
void setup() {
// Set the ADC reference to external (using ADM1087's 0.6V output)
analogReference(EXTERNAL);
// Initialize serial communication for debugging
Serial.begin(9600);
}
void loop() {
// Read an analog value from pin A0
int sensorValue = analogRead(A0);
// Convert the ADC value to voltage (0.6V reference, 10-bit ADC)
float voltage = sensorValue * (0.6 / 1023.0);
// Print the voltage to the Serial Monitor
Serial.print("Voltage: ");
Serial.print(voltage, 3); // Print with 3 decimal places
Serial.println(" V");
delay(1000); // Wait for 1 second before the next reading
}
analogReference(EXTERNAL).No Output Voltage:
Unstable Output Voltage:
Incorrect ADC Readings:
Overheating:
Can the ADM1087 drive high-current loads? No, the ADM1087 is designed for low-current applications. Use a buffer circuit if higher current is required.
What happens if the EN pin is left floating? The output will remain disabled. Always connect the EN pin to VCC or a control signal.
Can I use the ADM1087 with a 3.3 V system? Yes, the ADM1087 operates with input voltages as low as 1.6 V, making it compatible with 3.3 V systems.
Is the output voltage adjustable? No, the ADM1087 provides a fixed 0.6 V reference output.