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, such as medical instrumentation, sensor signal conditioning, and data acquisition systems.
The INA114 is an 8-pin device. Below is the pinout and description:
Pin Number | Pin Name | Description |
---|---|---|
1 | RG | Gain-setting resistor connection (connect external resistor to set gain) |
2 | -IN | Inverting input |
3 | +IN | Non-inverting input |
4 | V- | Negative power supply |
5 | Ref | Reference voltage input (sets output reference level, typically connected to GND) |
6 | Output | Amplifier output |
7 | V+ | Positive power supply |
8 | RG | Gain-setting resistor connection (connect external resistor to set gain) |
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 via Serial Monitor
const int analogPin = A0; // Analog pin connected to INA114 Output
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
int sensorValue = analogRead(analogPin); // Read the analog value (0-1023)
// Convert the analog value to voltage (assuming 5V reference)
float voltage = sensorValue * (5.0 / 1023.0);
// Print the voltage to the Serial Monitor
Serial.print("Amplified Voltage: ");
Serial.print(voltage);
Serial.println(" V");
delay(500); // Wait for 500ms before the next reading
}
No Output Signal:
Output Signal is Saturated:
High Noise in Output:
Incorrect Gain:
Can the INA114 operate with a single power supply? Yes, the INA114 can operate with a single supply, but the input and output signals must remain within the specified voltage range.
What is the maximum gain I can achieve with the INA114? The maximum gain is determined by the external resistor ( R_G ). With a very small ( R_G ), gains up to 10,000 are possible, but stability and bandwidth may be affected.
Can I use the INA114 for AC signals? Yes, the INA114 can amplify AC signals. Use coupling capacitors if needed to block DC components.
What is the purpose of the Ref pin? The Ref pin sets the output reference voltage. For single-supply operation, it is often set to half the supply voltage to allow the output to swing both above and below this level.
By following this documentation, users can effectively integrate the INA114 into their designs for precise and reliable signal amplification.