The AD620 is a low-power instrumentation amplifier known for its high accuracy and low noise. It is designed to amplify small differential signals in the presence of large common-mode voltages, making it ideal for precision measurement applications. With its high common-mode rejection ratio (CMRR), the AD620 is widely used in 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 (ground for single-supply operation). |
5 | RG | Gain-setting resistor connection. |
6 | Output | Amplifier output. |
7 | +Vs | Positive power supply. |
8 | RG | Gain-setting resistor connection (connected to Pin 5). |
The AD620 can be used to amplify a sensor signal for an Arduino UNO's ADC input. Below is an example circuit and code:
// AD620 Amplifier Example with Arduino UNO
// Reads the amplified signal from the AD620 and displays it via Serial Monitor.
const int analogPin = A0; // Analog pin connected to AD620 output
int sensorValue = 0; // Variable to store the ADC reading
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
sensorValue = analogRead(analogPin); // Read the ADC value (0-1023)
// Convert the ADC value to voltage (assuming 5V reference)
float voltage = sensorValue * (5.0 / 1023.0);
// Print the voltage to the Serial Monitor
Serial.print("Voltage: ");
Serial.print(voltage);
Serial.println(" V");
delay(500); // Wait for 500ms before the next reading
}
No Output Signal:
Distorted Output:
Incorrect Gain:
Output Voltage Stuck at Reference Level:
Q: Can the AD620 operate with a single power supply?
A: Yes, the AD620 can operate with a single supply voltage (e.g., 5V or 12V). Ensure the input signal and reference voltage are within the allowable range for single-supply operation.
Q: How do I calculate the gain for a specific application?
A: Use the formula ( G = 1 + \frac{49.4k\Omega}{R_G} ). For example, to achieve a gain of 100, use ( R_G = 499 \Omega ).
Q: What is the maximum input signal the AD620 can handle?
A: The maximum input signal depends on the power supply and common-mode voltage range. Refer to the datasheet for detailed specifications.
Q: Can I use the AD620 for AC signals?
A: Yes, the AD620 can amplify AC signals. Use appropriate coupling capacitors to block DC offsets if needed.