

The AS3400 is a high-performance operational amplifier (op-amp) manufactured by ams. It is designed for precision signal processing applications, offering low noise, high gain, and a wide bandwidth. These features make the AS3400 an ideal choice for applications requiring accurate and reliable signal amplification, such as audio systems, instrumentation, and control systems.








| Parameter | Value |
|---|---|
| Supply Voltage Range | ±2.5V to ±18V |
| Input Offset Voltage | 0.5 mV (typical) |
| Input Bias Current | 10 nA (typical) |
| Gain Bandwidth Product | 10 MHz |
| Slew Rate | 5 V/µs |
| Output Voltage Swing | ±(Vcc - 1.5V) |
| Noise Density | 4 nV/√Hz @ 1 kHz |
| Operating Temperature | -40°C to +85°C |
| Package Options | SOIC-8, TSSOP-8 |
The AS3400 is typically available in an 8-pin SOIC or TSSOP package. The pinout is as follows:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Offset Null 1 | Offset voltage adjustment (connect to a pot) |
| 2 | Inverting Input | Inverting input terminal (-) |
| 3 | Non-Inverting Input | Non-inverting input terminal (+) |
| 4 | V- (GND) | Negative power supply or ground |
| 5 | Offset Null 2 | Offset voltage adjustment (connect to a pot) |
| 6 | Output | Amplified output signal |
| 7 | V+ | Positive power supply |
| 8 | NC (No Connect) | Not connected internally |
Below is an example of a non-inverting amplifier circuit using the AS3400:
+Vcc
|
|
Rf
|
Input --+----+---- Output
|
Rg
|
GND
Where:
Rf is the feedback resistor.Rg is the resistor connected to ground.The AS3400 can be used with an Arduino UNO for signal amplification. Below is an example code snippet to read an amplified signal from the AS3400:
// Arduino code to read an amplified signal from the AS3400
const int analogPin = A0; // Connect AS3400 output to Arduino A0 pin
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
int sensorValue = analogRead(analogPin); // Read the analog signal
float voltage = sensorValue * (5.0 / 1023.0); // Convert to voltage
Serial.print("Amplified Signal Voltage: ");
Serial.println(voltage); // Print the voltage to the Serial Monitor
delay(500); // Wait for 500ms before the next reading
}
No Output Signal:
Distorted Output:
High Noise in Output:
Q: Can the AS3400 operate with a single power supply?
A: Yes, the AS3400 can operate with a single supply, but the input and output signals must remain within the specified voltage range.
Q: What is the maximum gain achievable with the AS3400?
A: The maximum gain depends on the feedback network design and the gain-bandwidth product (10 MHz). For high gains, ensure the bandwidth requirements of your application are met.
Q: How do I adjust the offset voltage?
A: Connect a 10 kΩ potentiometer between Offset Null 1 (Pin 1) and Offset Null 2 (Pin 5), with the wiper connected to Vcc or GND, to fine-tune the offset voltage.
Q: Is the AS3400 suitable for audio applications?
A: Yes, the AS3400's low noise and high gain make it an excellent choice for audio signal amplification.