

The FC1004 is a high-performance, low-power operational amplifier (op-amp) designed for precision signal processing applications. It offers a wide bandwidth, low noise, and high slew rate, making it ideal for use in analog circuits requiring accurate and reliable signal amplification. The FC1004 is commonly used in audio processing, sensor signal conditioning, active filters, and instrumentation amplifiers.








| Parameter | Value |
|---|---|
| Supply Voltage Range | ±2.5V to ±15V (dual supply) |
| Input Offset Voltage | 0.5 mV (typical) |
| Input Bias Current | 10 nA (typical) |
| Gain Bandwidth Product | 10 MHz |
| Slew Rate | 5 V/µs |
| Input Noise Voltage | 4 nV/√Hz |
| Output Voltage Swing | ±(Vcc - 1.5V) |
| Operating Temperature | -40°C to +85°C |
| Package Types | DIP-8, SOIC-8 |
The FC1004 is typically available in an 8-pin DIP or SOIC package. Below is the pinout description:
| 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 |
The FC1004 can be used to amplify an analog signal (e.g., from a sensor) before feeding it into the Arduino's analog input. Below is an example circuit and Arduino code:
// Example code to read an amplified signal from the FC1004
// and display the value on the serial monitor.
const int analogPin = A0; // Analog pin connected to FC1004 output
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
int 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:
Distorted Output:
High Noise in Output:
Offset Voltage Issues:
Q1: Can the FC1004 operate with a single power supply?
A1: Yes, the FC1004 can operate with a single power supply (e.g., 5V to 30V). However, the input and output signals must be biased appropriately to stay within the op-amp's operating range.
Q2: What is the maximum gain I can achieve with the FC1004?
A2: The maximum gain depends on the resistor values used in the circuit and the bandwidth limitations. For high gains, ensure the bandwidth is sufficient for your application.
Q3: Can I use the FC1004 for audio applications?
A3: Yes, the FC1004's low noise and wide bandwidth make it suitable for audio signal amplification.
Q4: How do I calculate the gain for an inverting amplifier configuration?
A4: The gain is calculated as ( -R_f / R_{in} ), where ( R_f ) is the feedback resistor and ( R_{in} ) is the input resistor.
By following this documentation, you can effectively integrate the FC1004 into your analog circuit designs for precision signal processing.