

The AD620 is a low-power, high-accuracy instrumentation amplifier designed for precision signal amplification. It is widely used in applications requiring the amplification of small differential signals in the presence of large common-mode voltages. With its high common-mode rejection ratio (CMRR) and low noise performance, the AD620 is ideal for sensor signal conditioning, medical instrumentation, and data acquisition systems. Its low power consumption and compact design make it suitable for portable and battery-powered devices.








The AD620 is available in an 8-pin package. The pinout and descriptions are as follows:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Ref | Reference voltage input. Sets the output voltage reference level. |
| 2 | -In | Inverting input of the differential amplifier. |
| 3 | +In | Non-inverting input of the differential amplifier. |
| 4 | -Vs | Negative power supply (e.g., -5V for dual supply or GND for single supply). |
| 5 | RG | Gain-setting resistor connection. |
| 6 | Output | Amplifier output. |
| 7 | +Vs | Positive power supply (e.g., +5V for dual supply or +5V to +36V for single). |
| 8 | RG | Gain-setting resistor connection (same as Pin 5). |
The AD620 can be used to amplify a sensor signal for an Arduino UNO. Below is an example of interfacing the AD620 with a strain gauge sensor:
// Example code for reading AD620 output with Arduino UNO
const int sensorPin = A0; // AD620 output connected to analog pin A0
float sensorValue = 0; // Variable to store the sensor reading
float voltage = 0; // Variable to store the calculated voltage
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
sensorValue = analogRead(sensorPin); // Read the analog value from AD620
voltage = (sensorValue / 1023.0) * 5.0; // Convert to voltage (5V reference)
// Print the voltage to the Serial Monitor
Serial.print("Voltage: ");
Serial.print(voltage, 3); // Print voltage with 3 decimal places
Serial.println(" V");
delay(500); // Wait for 500 ms before the next reading
}
No Output Signal:
Distorted Output:
High Noise in Output:
Incorrect Gain:
Q1: Can the AD620 operate with a single power supply?
Yes, the AD620 can operate with a single supply voltage (e.g., 5V). Ensure the input signal and reference voltage are within the allowable range for single-supply operation.
Q2: How do I calculate the gain for the AD620?
The gain is calculated using the formula ( G = 1 + \frac{49.4k\Omega}{R_G} ), where ( R_G ) is the resistor connected between Pins 5 and 8.
Q3: What is the maximum gain I can achieve with the AD620?
The AD620 can achieve a maximum gain of 10,000. However, high gains may reduce bandwidth and increase noise, so choose the gain carefully based on your application.
Q4: Can I use the AD620 for AC signals?
Yes, the AD620 can amplify AC signals. Ensure proper coupling and biasing for AC signal applications.