

The MAX9814 is a low-noise microphone preamplifier with an integrated automatic gain control (AGC) circuit, designed to deliver high-quality audio performance. Manufactured by Arduino, this component is ideal for applications requiring consistent audio levels and minimal distortion. The built-in AGC dynamically adjusts the gain based on the input signal level, ensuring clear and consistent audio output.








The MAX9814 has 8 pins, each serving a specific function. The table below outlines the pin configuration:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | OUT | Audio output signal. Connect to the next stage of the audio circuit. |
| 2 | GND | Ground. Connect to the system ground. |
| 3 | Vcc | Power supply input. Connect to a 2.7V to 5.5V power source. |
| 4 | BYPASS | Bypass capacitor connection for noise filtering. Connect a 0.1µF capacitor. |
| 5 | IN+ | Non-inverting microphone input. Connect to the positive terminal of the mic. |
| 6 | IN- | Inverting microphone input. Connect to the negative terminal of the mic. |
| 7 | GAIN | Gain control pin. Connect a resistor to set the gain level. |
| 8 | TH | Threshold pin for AGC. Connect a resistor to set the AGC threshold. |
The MAX9814 can be easily interfaced with an Arduino UNO for audio signal processing. Below is an example circuit and code:
// MAX9814 Audio Signal Processing Example
// Reads audio signal from the MAX9814 and prints the analog value to the Serial Monitor
const int audioPin = A0; // Analog pin connected to MAX9814 OUT pin
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
int audioValue = analogRead(audioPin); // Read the audio signal
Serial.println(audioValue); // Print the audio signal value to the Serial Monitor
delay(10); // Small delay to avoid overwhelming the Serial Monitor
}
No Output Signal:
Distorted Audio Output:
High Noise Levels:
Low Output Volume:
Q1: Can the MAX9814 work with a 3.3V power supply?
Yes, the MAX9814 operates within a supply voltage range of 2.7V to 5.5V, making it compatible with 3.3V systems.
Q2: What type of microphone is compatible with the MAX9814?
The MAX9814 is designed for use with electret microphones.
Q3: How do I calculate the resistor values for the GAIN and TH pins?
Refer to the MAX9814 datasheet for detailed resistor value tables corresponding to specific gain and AGC threshold levels.
Q4: Can I use the MAX9814 for stereo audio applications?
No, the MAX9814 is a single-channel preamplifier. For stereo applications, you will need two MAX9814 modules.
Q5: Is the MAX9814 suitable for battery-powered devices?
Yes, the MAX9814's low quiescent current (3mA typical) makes it ideal for battery-powered applications.