The XM125, manufactured by Acconner (Part ID: PB40 v1.1), is a high-performance, low-noise operational amplifier designed for precision signal processing applications. With its wide bandwidth and low distortion, the XM125 is ideal for applications requiring high accuracy and stability. It is commonly used in audio systems, instrumentation circuits, and other precision analog signal processing tasks.
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) |
Total Harmonic Distortion | 0.0003% (typical) |
Operating Temperature | -40°C to +85°C |
Package Type | 8-pin DIP or SOIC |
The XM125 is available in an 8-pin package. The pinout and descriptions are as follows:
Pin Number | Name | Description |
---|---|---|
1 | Offset Null | Used for offset voltage adjustment (optional) |
2 | Inverting Input (-) | Inverting input terminal for the op-amp |
3 | Non-Inverting Input (+) | Non-inverting input terminal |
4 | V- (GND) | Negative power supply or ground |
5 | Offset Null | Used for offset voltage adjustment (optional) |
6 | Output | Output terminal of the op-amp |
7 | V+ | Positive power supply |
8 | NC (No Connect) | Not connected internally |
Below is an example of using the XM125 as a non-inverting amplifier with a gain of 11.
/* Example: Non-Inverting Amplifier Circuit
Gain = 1 + (R2 / R1)
R1 = 10 kΩ, R2 = 100 kΩ, Gain = 11
*/
#include <Arduino.h>
// No specific code is required for the XM125 itself, as it is an analog component.
// However, you can use the Arduino's ADC to read the amplified signal.
void setup() {
Serial.begin(9600); // Initialize serial communication
analogReference(DEFAULT); // Use default reference voltage (5V for Arduino UNO)
}
void loop() {
int sensorValue = analogRead(A0); // Read the amplified signal from pin A0
float voltage = sensorValue * (5.0 / 1023.0); // Convert ADC value to voltage
Serial.print("Amplified Voltage: ");
Serial.println(voltage); // Print the voltage to the serial monitor
delay(500); // Wait for 500 ms
}
No Output Signal
Output Signal Distortion
Oscillations or Noise
High Offset Voltage
Q: Can the XM125 operate with a single power supply?
A: Yes, the XM125 can operate with a single supply (e.g., 5V and GND). However, ensure the input signal and output swing remain within the op-amp's operating range.
Q: What is the maximum gain I can achieve with the XM125?
A: The maximum gain depends on the feedback network and the op-amp's bandwidth. For high gains, ensure the gain-bandwidth product (10 MHz) is not exceeded.
Q: Is the XM125 suitable for audio applications?
A: Yes, the XM125's low noise and low distortion make it an excellent choice for audio preamplifiers and equalizers.
Q: How do I protect the XM125 from damage?
A: Use proper decoupling capacitors, avoid exceeding the supply voltage range, and ensure the input signals do not exceed the supply rails.
This concludes the documentation for the XM125 operational amplifier. For further assistance, refer to the manufacturer's datasheet or contact Acconner support.