

The AD8226 is a high-performance instrumentation amplifier manufactured by Analog Devices. It is designed to amplify low-level differential signals while rejecting common-mode noise and interference. This makes it ideal for applications requiring precise and accurate signal amplification, such as sensor interfacing, medical instrumentation, and data acquisition systems.








The AD8226 offers excellent performance and flexibility, making it suitable for a wide range of applications. Below are its key technical specifications:
| Parameter | Value |
|---|---|
| Supply Voltage Range | ±2.3 V to ±18 V or 2.3 V to 36 V |
| Input Voltage Range | -Vs + 0.1 V to +Vs - 1.2 V |
| Gain Range | 1 to 1000 (set by external resistor) |
| Gain Error | ±0.3% (maximum) |
| Common-Mode Rejection Ratio (CMRR) | 80 dB (minimum) at G = 1 |
| Input Offset Voltage | ±200 µV (maximum) |
| Input Bias Current | 1 nA (typical) |
| Bandwidth | 1.5 MHz at G = 1 |
| Slew Rate | 0.3 V/µs |
| Operating Temperature Range | -40°C to +125°C |
| Package Options | 8-lead SOIC, 8-lead MSOP |
The AD8226 is available in an 8-pin package. Below is the pinout and description:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | REF | Reference voltage input. Sets the output voltage reference. |
| 2 | -IN | Inverting input of the amplifier. |
| 3 | +IN | Non-inverting input of the amplifier. |
| 4 | -Vs | Negative power supply. |
| 5 | RG | Gain resistor connection. Sets the gain. |
| 6 | RG | Gain resistor connection. Sets the gain. |
| 7 | OUT | Amplifier output. |
| 8 | +Vs | Positive power supply. |
The AD8226 is straightforward to use in a circuit. Below are the steps and considerations for proper usage:
+Vs pin and the negative supply voltage to the -Vs pin. Ensure the supply voltage is within the specified range (±2.3 V to ±18 V or 2.3 V to 36 V).+IN and -IN pins. Ensure the input voltage is within the specified range.RG pins to set the desired gain. The gain is calculated as:
[
G = 1 + \frac{49.4 , \text{k}\Omega}{R_G}
]
where ( R_G ) is the resistance in ohms.REF pin to a reference voltage source. This sets the output voltage reference. For single-supply operation, connect REF to mid-supply (e.g., ( V_{REF} = \frac{+Vs}{2} )).OUT pin. Ensure the load connected to the output does not exceed the amplifier's drive capability.The AD8226 can be used with an Arduino UNO to amplify sensor signals. Below is an example of interfacing the amplifier with a thermocouple sensor:
+IN and -IN pins of the AD8226.RG pins.OUT pin of the AD8226 to an analog input pin (e.g., A0) of the Arduino UNO.// Example code to read amplified signal from AD8226 and display it on the serial monitor
const int analogPin = A0; // Analog pin connected to AD8226 OUT pin
float voltage = 0.0; // Variable to store the measured voltage
float Vref = 5.0; // Reference voltage of Arduino UNO (5V)
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
int sensorValue = analogRead(analogPin); // Read the analog input
voltage = (sensorValue / 1023.0) * Vref; // Convert ADC value to voltage
// Print the measured voltage to the serial monitor
Serial.print("Measured 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:
Output Signal Saturation:
REF pin is correctly set.Excessive Noise in Output:
Incorrect Gain:
Q: Can the AD8226 operate with a single power supply?
A: Yes, the AD8226 can operate with a single supply voltage. In this case, connect the REF pin to mid-supply to ensure proper operation.
Q: What is the maximum gain I can achieve with the AD8226?
A: The maximum gain is 1000, which can be achieved by selecting an appropriate ( R_G ) value.
Q: How do I minimize offset voltage errors?
A: Use precision resistors for ( R_G ) and ensure the input signal is properly balanced to minimize offset errors.