The INA114 is a precision instrumentation amplifier manufactured by Texas Instruments (Part ID: IC). It is designed for low-level signal amplification, offering high input impedance, low offset voltage, and low noise. These features make it an excellent choice for applications requiring accurate and stable signal processing. Common use cases include medical instrumentation, sensor signal conditioning, and data acquisition systems.
The INA114 is a high-performance component with the following key specifications:
Parameter | Value |
---|---|
Supply Voltage Range | ±2.25V to ±18V |
Input Impedance | 10⁹ Ω (typical) |
Gain Range | 1 to 10,000 (set by external resistor) |
Offset Voltage | 50 µV (typical) |
Input Bias Current | 2 nA (typical) |
Bandwidth | 1 MHz (at G = 1) |
Slew Rate | 0.3 V/µs |
Noise | 8 nV/√Hz (at 1 kHz) |
Operating Temperature Range | -40°C to +85°C |
The INA114 is available in an 8-pin DIP or SOIC package. The pinout is as follows:
Pin Number | Pin Name | Description |
---|---|---|
1 | RG | Gain Resistor Connection (sets gain with external resistor) |
2 | -IN | Inverting Input |
3 | +IN | Non-Inverting Input |
4 | -V (V-) | Negative Power Supply |
5 | Ref | Reference Voltage Input (sets output reference level) |
6 | Output | Amplifier Output |
7 | +V (V+) | Positive Power Supply |
8 | RG | Gain Resistor Connection (sets gain with external resistor) |
The INA114 can be used to amplify low-level signals (e.g., from a sensor) for input to an Arduino UNO's analog pin. Below is an example circuit and code:
// INA114 Amplifier Example with Arduino UNO
// Reads the amplified signal from the INA114 and displays it on the Serial Monitor.
const int analogPin = A0; // Analog pin connected to INA114 output
int sensorValue = 0; // Variable to store the analog reading
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
sensorValue = analogRead(analogPin); // Read the analog value
float voltage = sensorValue * (5.0 / 1023.0); // Convert to voltage
Serial.print("Amplified Voltage: ");
Serial.print(voltage);
Serial.println(" V");
delay(500); // Wait for 500 ms before the next reading
}
No Output Signal:
Output Signal is Distorted:
Incorrect Gain:
High Noise in Output:
Q: Can the INA114 operate with a single power supply?
A: Yes, the INA114 can operate with a single supply (e.g., 5V and ground). However, ensure the input and output signals remain within the specified voltage range.
Q: How do I calculate the gain for a specific application?
A: Use the formula ( G = 1 + \frac{50kΩ}{R_G} ), where ( R_G ) is the external resistor connected between pins 1 and 8.
Q: What is the maximum input signal the INA114 can handle?
A: The input signal must remain within the common-mode input range, which depends on the supply voltage. Refer to the datasheet for detailed limits.
Q: Can I use the INA114 for differential signal amplification?
A: Yes, the INA114 is designed for differential signal amplification. Connect the differential signal to the +IN and -IN pins.
By following this documentation, users can effectively integrate the INA114 into their designs for precise and reliable signal amplification.