Previous
FT232RL USB to TTL serial converter Type-C

FTDI Module FT232RL USB to TTL Serial Converter (Type-C)

Original price was: 380.00৳ .Current price is: 299.00৳ .
Next

GY-BMP280 Barometric Pressure & Temperature Sensor Module

Original price was: 260.00৳ .Current price is: 199.00৳ .
GY-BMP280 barometric pressure temperature sensor module

INMP441 Omnidirectional Microphone Module

Original price was: 310.00৳ .Current price is: 239.00৳ .

🎤 High-quality INMP441 Omnidirectional Microphone Module with digital I2S output—perfect for voice recognition, sound detection, and ESP32 audio projects.


🚀 Delivery & Shipping Information

🚚

Inside Dhaka

69 BDT  ·  24 Hours

🛵

Outside Dhaka

129 BDT  ·  24–72 Hrs

✅ Cash On Delivery Available

COD Available → Pay After Receiving Your Parcel

📦

Carefully Packed

To Ensure Safe Delivery

Fast Order Processing

& Quick Dispatch

12 in stock
Add to Wishlist
Add to Wishlist
Trust Badge Image

Description

The INMP441 Omnidirectional Microphone Module is a high-performance MEMS digital microphone that communicates over I2S (Inter-IC Sound) — delivering crystal-clear audio data directly in digital format without any analog noise or interference. Unlike analog microphones, the INMP441 sends a clean digital audio stream that works seamlessly with ESP32, Raspberry Pi, STM32 and any I2S-capable microcontroller.

With its omnidirectional pickup pattern, the INMP441 captures sound equally from all directions — making it perfect for voice recognition projects, smart speakers, audio recording systems, and IoT sound monitoring in Bangladesh. The flat frequency response and wide dynamic range make this the go-to microphone for serious audio projects.

⭐ Key Features

🎤

I2S Digital Output

Pure digital audio — no analog noise, no ADC conversion needed

🔄

Omnidirectional Pickup

Captures sound equally from all directions — ideal for voice recognition

📊

Wide Dynamic Range

61dB SNR — captures quiet whispers and loud sounds clearly

🔋

Ultra Low Power

Only 1.4mA operating current — perfect for battery-powered IoT devices

🎯

Flat Frequency Response

60Hz to 15kHz — captures natural, uncoloured audio across voice range

🔌

1.8V – 3.3V Operation

Compatible with ESP32, Raspberry Pi and all 3.3V I2S microcontrollers

🚀 What Can You Build With the INMP441?

🗣️

Voice Recognition

Wake word detection and voice command projects

🔊

Smart Speaker Builds

DIY Alexa-style smart speakers with ESP32

🎙️

Audio Recording

Record and save audio data to SD card or cloud

📊

Sound Level Monitoring

Ambient noise detection and noise pollution logging

🤖

Robot Voice Input

Give your robot the ability to hear and respond

👤 Who Should Buy This?

🎓 Beginners

Curious about adding audio input to an ESP32 project — I2S setup is simpler than analog audio processing

📚 Students

Signal processing, voice recognition thesis work, and audio IoT system university projects

⚙️ Engineers

Prototyping voice-controlled devices, noise monitoring systems or audio-enabled IoT products

🛠️ Hobbyists

Makers building DIY smart speakers, baby monitors, or voice-activated home automation systems

⚔️ INMP441 vs MAX9814 vs KY-037 — Which Microphone Should You Use?

A practical comparison of the most popular microphone modules available for maker projects

Feature

THIS ITEM

INMP441

I2S Digital MEMS

AMPLIFIED

MAX9814

Analog AGC Mic

BASIC

KY-037

Sound Detection

Output TypeDigital I2SAnalogDigital / Analog
Audio QualityExcellent — 61dB SNRGood — AGC amplifiedBasic — detection only
Noise ImmunityExcellent — digital pathGoodPoor — analog noise
InterfaceI2S — 3 wiresAnalog pin (ADC)Digital / Analog pin
ADC Needed❌ No — fully digital✅ Yes✅ Yes
Best ForVoice recognition, recordingAnalog audio captureSimple clap/sound detection

🔧 Features & Specifications

Feature ⚙️Details
🖥️ Product TypeINMP441 I2S Omnidirectional MEMS Microphone Module
🎤 Microphone TypeOmnidirectional MEMS
🔗 InterfaceI2S Digital (SCK, WS, SD)
📊 SNR61dB
🎵 Frequency Response60Hz – 15kHz
⚡ Operating Voltage1.8V – 3.3V
🔋 Current Draw1.4mA (typical)
📌 PinsVDD, GND, SCK, WS, SD, L/R
🎯 Compatible WithESP32, Raspberry Pi, STM32, any I2S microcontroller

📌 Wiring & Quick Start (ESP32)

INMP441 → ESP32 PIN CONNECTIONS

INMP441 PinESP32 GPIOFunction
VDD3.3VPower supply
GNDGNDGround
SCKGPIO14I2S Serial Clock
WSGPIO15Word Select (L/R clock)
SDGPIO32Serial Data (audio out)
L/RGNDGND = Left channel, 3.3V = Right
🎤

INMP441 ESP32 I2S Read Example

#include <driver/i2s.h>
 
#define I2S_WS   15
#define I2S_SD   32
#define I2S_SCK  14
#define I2S_PORT I2S_NUM_0
#define SAMPLE_RATE 44100
 
void setup() {
  Serial.begin(115200);
  i2s_config_t config = {
    .mode = (i2s_mode_t)(I2S_MODE_MASTER | I2S_MODE_RX),
    .sample_rate = SAMPLE_RATE,
    .bits_per_sample = I2S_BITS_PER_SAMPLE_32BIT,
    .channel_format = I2S_CHANNEL_FMT_ONLY_LEFT,
    .communication_format = I2S_COMM_FORMAT_STAND_I2S,
    .intr_alloc_flags = 0,
    .dma_buf_count = 8,
    .dma_buf_len = 64,
    .use_apll = false
  };
  i2s_driver_install(I2S_PORT, &config, 0, NULL);
  i2s_pin_config_t pins = {
    .bck_io_num = I2S_SCK,
    .ws_io_num = I2S_WS,
    .data_out_num = I2S_PIN_NO_CHANGE,
    .data_in_num = I2S_SD
  };
  i2s_set_pin(I2S_PORT, &pins);
  Serial.println("✅ INMP441 I2S Ready!");
}
 
void loop() {
  int32_t sample = 0;
  size_t bytesRead;
  i2s_read(I2S_PORT, &sample, sizeof(sample), &bytesRead, 100);
  Serial.println(sample >> 14);  // Print audio level
  delay(1);
}

Open Serial Plotter in Arduino IDE to see the live audio waveform from the INMP441.

❓ Frequently Asked Questions

❓ Does the INMP441 work with ESP32?

Yes — the ESP32 has a built-in I2S peripheral that works perfectly with the INMP441. Use the ESP32 I2S driver included in the ESP-IDF and Arduino frameworks. No external library is needed — just configure the I2S pins and start reading audio data.

❓ What is the difference between INMP441 and MAX9814?

The INMP441 outputs a digital I2S signal — cleaner, no noise from ADC conversion, ideal for voice recognition and recording. The MAX9814 is an analog microphone with AGC (auto gain control) — easier for basic sound level detection but limited in audio quality. Choose INMP441 for serious audio applications.

❓ What is the INMP441 price in Bangladesh?

The INMP441 Omnidirectional Microphone Module price in BD is 239 BDT from Dream RC — the best price in Bangladesh with fast delivery and Cash on Delivery nationwide.

🔗 Complete Your Audio Setup

The INMP441 captures audio — pair it with one of these modules to complete your audio project:

MAX98357A I2S 3W Audio Amplifier Module - Dream RC Bangladesh

MAX98357A I2S 3W Audio Amplifier Module

The perfect output partner — the MAX98357A is an I2S Class D amplifier that drives a speaker directly. Use INMP441 as input and MAX98357A as output to build a complete digital audio system with ESP32.

View MAX98357A Amplifier →

MAX9814 Microphone AGC Amplifier Module - Dream RC Bangladesh

MAX9814 Microphone AGC Amplifier Module

Prefer an analog microphone? The MAX9814 has built-in automatic gain control and outputs a clean analog signal — easier for basic projects that just need sound level detection or simple audio capture via ADC.

View MAX9814 Microphone →

📦 Package Includes

📦

1 × INMP441 Omnidirectional I2S MEMS Microphone Module

Jumper wires not included

💬 INMP441 Microphone Price in BD & Why Buy From Dream RC?

The INMP441 Omnidirectional Microphone Module price in BD is 239 BDT. Buy the INMP441 I2S microphone in Bangladesh from Dream RC — your trusted source for audio modules, sensors, and IoT components at the best price with fast nationwide delivery and Cash on Delivery.

COD Available
Pay after receiving
Fast Dispatch
Quick processing
🚚 Inside Dhaka
69 BDT — 24 hrs
🛵 Outside Dhaka
129 BDT — 24–72 hrs

Reviews

There are no reviews yet.

Be the first to review “INMP441 Omnidirectional Microphone Module”

Your email address will not be published. Required fields are marked *

Shopping cart

0
image/svg+xml

No products in the cart.

Continue Shopping