The AD620 is a low-power instrumentation amplifier renowned for its high accuracy and low noise characteristics. It is designed to amplify small differential signals while rejecting large common-mode voltages, making it particularly suitable for applications in sensor interfacing and medical instrumentation. The AD620's high common-mode rejection ratio (CMRR) ensures that it can effectively process signals in noisy environments, which is critical for precision measurements.
Parameter | Value |
---|---|
Supply Voltage (V+) | +2.3V to +18V |
Supply Voltage (V-) | -2.3V to -18V |
Input Voltage Range | ±0.1V to ±0.5V |
Gain Range | 1 to 1000 |
Input Bias Current | 1 pA (typical) |
Common-Mode Rejection Ratio | 120 dB (typical) |
Noise (Input Voltage) | 0.1 µV (typical) |
Power Consumption | 1.2 mW (typical) |
Pin Number | Pin Name | Description |
---|---|---|
1 | V- | Negative power supply connection |
2 | V+ | Positive power supply connection |
3 | RGain | Gain resistor connection (external resistor) |
4 | Ref | Reference voltage input (for offset adjustment) |
5 | IN+ | Non-inverting input for the differential signal |
6 | IN- | Inverting input for the differential signal |
7 | OUT | Output signal (amplified differential signal) |
8 | NC | No connection (not used) |
Power Supply Connection:
Input Signal Connection:
Gain Configuration:
Reference Voltage:
Output Signal:
No Output Signal:
Distorted Output:
Excessive Noise:
If you are interfacing the AD620 with an Arduino UNO, you can use the following code to read the output signal:
const int analogPin = A0; // Pin connected to AD620 output
void setup() {
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int sensorValue = analogRead(analogPin); // Read the output
float voltage = sensorValue * (5.0 / 1023.0); // Convert to voltage
Serial.print("Output Voltage: ");
Serial.println(voltage); // Print the voltage value
delay(1000); // Wait for a second
}
This code reads the output voltage from the AD620 and prints it to the serial monitor. Make sure to adjust the analog pin according to your circuit configuration.