

The INM441 is a low-noise, high-performance electret condenser microphone designed for audio applications. It offers excellent sound quality and sensitivity in a compact form factor, making it ideal for a wide range of uses. This microphone is commonly used in devices such as voice recorders, audio input systems, IoT devices, and other sound-capturing applications where clarity and precision are critical.








The INM441 microphone is designed to deliver high performance while maintaining low power consumption. Below are its key technical details:
| Parameter | Value |
|---|---|
| Type | Electret Condenser Microphone |
| Operating Voltage Range | 1.5V to 10V |
| Sensitivity | -42 dB ± 3 dB (0 dB = 1V/Pa) |
| Signal-to-Noise Ratio | ≥ 60 dB |
| Frequency Response | 20 Hz to 20 kHz |
| Impedance | ≤ 2.2 kΩ |
| Current Consumption | ≤ 0.5 mA |
| Dimensions | 6 mm (diameter) × 2.2 mm (height) |
| Operating Temperature | -20°C to +70°C |
The INM441 microphone typically has two pins for electrical connections. Below is the pinout description:
| Pin | Name | Description |
|---|---|---|
| 1 | V+ (Power) | Positive supply voltage (1.5V to 10V) |
| 2 | GND | Ground connection for the microphone |
Note: Some variants of the INM441 may include a third pin for additional functionality, such as an output signal or biasing. Refer to the specific datasheet for details.
Below is a simple circuit diagram for connecting the INM441 microphone to an amplifier or microcontroller:
V+ (Power) ---- R (2.2 kΩ) ---- +V (Supply Voltage)
|
C (Coupling Capacitor)
|
Signal Output ----> Amplifier/Microcontroller
GND ---------------------------- GND
The INM441 can be connected to an Arduino UNO for audio input. Below is an example of how to set up the circuit and code:
// INM441 Microphone Example with Arduino UNO
// This code reads the analog signal from the microphone and prints the values
// to the Serial Monitor. Ensure the microphone is connected to analog pin A0.
const int micPin = A0; // Microphone connected to analog pin A0
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
int micValue = analogRead(micPin); // Read the analog value from the microphone
Serial.println(micValue); // Print the value to the Serial Monitor
delay(10); // Small delay to stabilize readings
}
Note: The analog values from the microphone will vary based on the sound intensity. You can process these values further for applications like sound level detection or audio analysis.
No Output Signal
Distorted Audio
Low Sensitivity
High Noise in Output
Q: Can the INM441 be used with a 5V power supply?
A: Yes, the INM441 operates within a voltage range of 1.5V to 10V, so a 5V supply is suitable.
Q: What is the purpose of the coupling capacitor?
A: The coupling capacitor blocks DC components from the microphone's output, allowing only the AC audio signal to pass through.
Q: Can the INM441 detect ultrasonic frequencies?
A: No, the INM441 is designed for audio frequencies with a range of 20 Hz to 20 kHz.
Q: Is the INM441 suitable for outdoor use?
A: The INM441 is not weatherproof. For outdoor use, additional protection (e.g., a waterproof housing) is required.
By following this documentation, you can effectively integrate the INM441 microphone into your projects and achieve high-quality audio performance.