

The ADMP401 is a low-power, high-performance MEMS (Micro-Electro-Mechanical Systems) microphone manufactured by Analog Devices. It is designed for portable applications requiring high-quality audio capture. The microphone features an analog output interface, low noise, and low distortion, making it ideal for voice recognition, audio recording, and other sound-sensitive applications.








The ADMP401 is optimized for low-power operation and high audio fidelity. Below are its key technical specifications:
| Parameter | Value |
|---|---|
| Supply Voltage (VDD) | 1.5 V to 3.3 V |
| Supply Current | 250 µA (typical) |
| Sensitivity | −42 dBV ± 3 dB |
| Signal-to-Noise Ratio (SNR) | 62 dBA |
| Frequency Response | 100 Hz to 15 kHz |
| Output Impedance | < 200 Ω |
| Output Type | Analog |
| Operating Temperature Range | −40°C to +85°C |
| Package Type | LGA (4 mm × 3 mm × 1 mm) |
The ADMP401 has a simple pinout with four pins. The table below describes each pin:
| Pin Name | Pin Number | Description |
|---|---|---|
| VDD | 1 | Power supply input (1.5 V to 3.3 V). |
| GND | 2 | Ground connection. |
| OUTPUT | 3 | Analog audio output signal. |
| SELECT | 4 | Selects the microphone's output channel polarity. |
The ADMP401 is straightforward to use in audio applications. Below are the steps and considerations for integrating it into a circuit:
The ADMP401 can be connected to an Arduino UNO for audio signal processing. Below is an example circuit and code:
// ADMP401 Microphone Example with Arduino UNO
// This code reads the analog output of the ADMP401 and prints the values
// to the Serial Monitor for basic audio signal visualization.
const int micPin = A0; // Analog pin connected to ADMP401 OUTPUT
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
int micValue = analogRead(micPin); // Read the microphone's analog output
Serial.println(micValue); // Print the value to the Serial Monitor
delay(10); // Small delay for stability
}
No Output Signal:
Distorted Audio Output:
Low Sensitivity:
Interference or Noise:
Q: Can the ADMP401 be used with a 5V power supply?
A: No, the ADMP401 operates within a supply voltage range of 1.5 V to 3.3 V. Using a 5V supply may damage the component.
Q: Is the ADMP401 suitable for outdoor use?
A: The ADMP401 has an operating temperature range of −40°C to +85°C, but it is not waterproof. Additional protection is required for outdoor applications.
Q: How do I improve the signal-to-noise ratio (SNR)?
A: Use a clean power supply, minimize interference, and ensure proper placement of the microphone in your design.
Q: Can I use multiple ADMP401 microphones in the same circuit?
A: Yes, but ensure proper channel selection and avoid crosstalk by isolating the output signals.
By following this documentation, you can effectively integrate the ADMP401 into your audio applications for high-quality sound capture.