

The SMSL PO100 2024 is a precision operational amplifier (op-amp) designed for high-speed applications. It features low noise, high gain bandwidth, and exceptional stability, making it ideal for signal processing, amplification, and other demanding electronic tasks. This component is widely used in audio systems, instrumentation, active filters, and analog signal conditioning circuits.








| Parameter | Value |
|---|---|
| Manufacturer | SMSL |
| Part ID | SMSL PO100 2024 |
| Supply Voltage Range | ±2.5V to ±18V |
| Input Offset Voltage | 0.5 mV (typical) |
| Gain Bandwidth Product | 10 MHz |
| Slew Rate | 5 V/µs |
| Input Noise Density | 4 nV/√Hz |
| Output Voltage Swing | ±(Vcc - 1.5V) |
| Input Impedance | 10 MΩ |
| Operating Temperature Range | -40°C to +85°C |
| Package Type | 8-pin DIP or SOIC |
The PO100 2024 is available in an 8-pin package. Below is the pinout and description:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Offset Null 1 | Offset voltage adjustment (connect to potentiometer) |
| 2 | Inverting Input | Inverting input terminal (-) |
| 3 | Non-Inverting Input | Non-inverting input terminal (+) |
| 4 | V- (Negative Supply) | Negative power supply terminal |
| 5 | Offset Null 2 | Offset voltage adjustment (connect to potentiometer) |
| 6 | Output | Output terminal |
| 7 | V+ (Positive Supply) | Positive power supply terminal |
| 8 | NC (No Connect) | Not connected |
The following example demonstrates how to use the PO100 2024 as a non-inverting amplifier to amplify an analog signal and read it using an Arduino UNO.
// Example code to read an amplified signal using Arduino UNO
const int analogPin = A0; // Analog pin connected to PO100 2024 output
int signalValue = 0; // Variable to store the analog signal value
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
signalValue = analogRead(analogPin); // Read the amplified signal
Serial.print("Amplified Signal Value: ");
Serial.println(signalValue); // Print the signal value to the Serial Monitor
delay(500); // Wait for 500 ms before the next reading
}
No Output Signal:
Output Signal Distortion:
High Noise in Output:
Offset Voltage Issues:
Q1: Can the PO100 2024 be used for audio applications?
A1: Yes, the PO100 2024 is well-suited for audio applications due to its low noise and high gain bandwidth.
Q2: What is the maximum gain achievable with this op-amp?
A2: The maximum gain depends on the feedback network design. However, ensure the gain-bandwidth product (10 MHz) is not exceeded.
Q3: Is the PO100 2024 compatible with single-supply operation?
A3: Yes, the PO100 2024 can operate with a single supply, but the input and output signals must remain within the specified voltage range.
Q4: How do I prevent oscillations in high-speed circuits?
A4: Use proper PCB layout techniques, minimize stray capacitance, and add a small capacitor across the feedback resistor if needed.