INMP441 โมดูลไมโครโฟนรอบทิศทาง Omnidirectional Microphone Module I2S Interface MEMS แบบบัดกรีขาแล้วกลับด้าน

INMP441 โมดูลไมโครโฟนรอบทิศทาง Omnidirectional Microphone Module I2S Interface MEMS แบบบัดกรีขาแล้วกลับด้าน
INMP441 โมดูลไมโครโฟนรอบทิศทาง Omnidirectional Microphone Module I2S Interface MEMS แบบบัดกรีขาแล้วกลับด้านINMP441 โมดูลไมโครโฟนรอบทิศทาง Omnidirectional Microphone Module I2S Interface MEMS แบบบัดกรีขาแล้วกลับด้านINMP441 โมดูลไมโครโฟนรอบทิศทาง Omnidirectional Microphone Module I2S Interface MEMS แบบบัดกรีขาแล้วกลับด้านINMP441 โมดูลไมโครโฟนรอบทิศทาง Omnidirectional Microphone Module I2S Interface MEMS แบบบัดกรีขาแล้วกลับด้านINMP441 โมดูลไมโครโฟนรอบทิศทาง Omnidirectional Microphone Module I2S Interface MEMS แบบบัดกรีขาแล้วกลับด้าน
รหัสสินค้า SG50638
หมวดหมู่ Audio/Sound/MP3/Voice
ราคา 85.00 บาท
สถานะสินค้า พร้อมส่ง
จำนวน
ชิ้น
หยิบลงตะกร้า
หนังสือรับรองบริษัท
บุ๊คแบ๊งค์
คุ้มครองโดย LnwPay

Product introduction:
The INMP441 is a high performance, low power, digital output, omnidirectional MEMS microphone with bottom port. TheThe complete INMP441 solution consists of a MEMS sensor, signal conditioning, analog to digital converter, anti-aliasing filter, power management and industry standard 24-bit I2S interface. The I2S interface allows the INMP441 to be directly connected to digital processors such as DSPs and microcontrollers without the need for an audio codec for use in the system. The INMP441 has a high signal-to-noise ratio and is an excellent choice for near field applications. The INMP441 has a flat wideband frequency response that results in high definition of natural sound.

Product Features:
1. Digital I2S interface with high precision 24-bit data2. High signal to noise ratio is 61 dBA3. High sensitivity - 26 dBFS4. Stable frequency response from 60 Hz to 15 kHz5. Low power consumption: low current consumption 1.4 mA6. High PSR: -75 dBFS

Interface definition:
SCK: Serial data clock for I2S interfaceWS: Serial data word selection for I2S interfaceL/R: Left/Right channel selection.When set to low, the microphone outputs a signal on the left channel of the I2S frame.When set to high level, the microphone outputs signals on the right channelSD: Serial data output of the I2S interface.VCC: Input power, 1.8V to 3.3V.GND: power ground

This product provides tutorials for using ESP32 modules with I2S functionality.
Connect to ESP32: INMP441 ESP32
SCK >> GPIO14
SD >> GPIO32
WS >> GPIO15
L/R >> GND
GND >> GND
VDD >> VDD3.3

What is the difference between an omnidirectional microphone and a unidirectional microphone:
First of all, I understand that the sound divergence is all-round. One person speaks and diverge in the air.As for how far it can pass, it depends on many factors.1.directional microphone, the general pickup radius is very small, 30 cm is a big one, single use, put it on the mouth, the sound quality is very good, because it is not picked up again.The shape is generally goose neck wheat, a rod, a curved rod, to your mouth, directivity, just listen to your voice.With a single-point microphone, the sensitivity is limited to a certain range. Sensitivity is too high, causing sharp whistling, etc., involving many other devicesAs for why not make a big pickup radius, there is a reason. Later2.omnidirectional microphone, the general pickup radius is very large, one meter two meters three meters five meters have, compared with ten centimeters, this level is very different, it is not just picking a person\'s voice, but Multiple people, five six, seven eight or even ten.Omnidirectional microphones are highly sensitive,The omnidirectional microphone pickup radius is too large, and it will also pick up more ambient noise, so the sound quality is not as good as the single-point microphone, unless you do a good noise reduction. There is definitely a difference between collective use and single-person service.But omnidirectional wheat has a benefit, the wiring is simple, not one by one. Suitable for small meetings, ad hoc meetings, some remote discussions, remote operations.3.single-point wheat generally supports local amplification,Omnidirectional microphones generally do not support local amplification. It should be noted that because of such high sensitivity, the local amplification whistling is very scary, and the current technology is difficult to deal with.

1
#include <driver/i2s.h>
2
#define I2S_WS 15
3
#define I2S_SD 13
4
#define I2S_SCK 2
5
 
6
#define I2S_PORT I2S_NUM_0
7
 
8
void setup() {
9
Serial.begin(115200);
10
Serial.println("Setup I2S ...");
11
 
12
delay(1000);
13
i2s_install();
14
i2s_setpin();
15
i2s_start(I2S_PORT);
16
delay(500);
17
}
18
 
19
void loop() {
20
int32_t sample = 0;
21
int bytes = i2s_pop_sample(I2S_PORT, (char*)&sample, portMAX_DELAY);
22
if(bytes > 0){
23
Serial.println(sample);
24
}
25
}
26
 
27
void i2s_install(){
28
const i2s_config_t i2s_config = {
29
.mode = i2s_mode_t(I2S_MODE_MASTER | I2S_MODE_RX),
30
.sample_rate = 44100,
31
.bits_per_sample = i2s_bits_per_sample_t(16),
32
.channel_format = I2S_CHANNEL_FMT_ONLY_LEFT,
33
.communication_format = i2s_comm_format_t(I2S_COMM_FORMAT_I2S | I2S_COMM_FORMAT_I2S_MSB),
34
.intr_alloc_flags = 0, // default interrupt priority
35
.dma_buf_count = 8,
36
.dma_buf_len = 64,
37
.use_apll = false
38
};
39
 
40
i2s_driver_install(I2S_PORT, &i2s_config, 0, NULL);
41
}
42
 
43
void i2s_setpin(){
44
const i2s_pin_config_t pin_config = {
45
.bck_io_num = I2S_SCK,
46
.ws_io_num = I2S_WS,
47
.data_out_num = -1,
48
.data_in_num = I2S_SD
49
};
50
 
51
i2s_set_pin(I2S_PORT, &pin_config);
52
}





วิธีการชำระเงิน

ชำระเงินค่าสินค้าโดยการโอนเงินเข้าบัญชีธนาคาร KBANK, SCB, BBL,TMB

กรุณาเก็บหลักฐานการโอนเงินของท่านไว้เพื่อแจ้งการชำระเงินด้วยค่ะ

 

ท่านสามารถแจ้งการชำระเงินผ่านระบบอัตโนมัติได้โดย Click Link ข้างล่างค่ะ

https://www.arduitronics.com/informpayment

 

บมจ. ธนาคารกสิกรไทย สาขาเซ็นทรัล แจ้งวัฒนะ ออมทรัพย์
ธนาคารไทยพาณิชย์ จำกัด (มหาชน) สาขาเซ็นทรัล แจ้งวัฒนะ ออมทรัพย์
ธนาคารกรุงเทพ จำกัด (มหาชน) สาขาเซนทรัล พระราม 3 สะสมทรัพย์
ธนาคารทหารไทยธนชาต จำกัด (มหาชน) สาขาเซนทรัล พระราม 3 กระแสรายวัน

เพิ่มเพื่อน

@rfm0967y

ติดต่อสอบถาม

เพิ่มเพื่อน

CATEGORY

Sensors / Modules [1702]

CONTACT US

มือถือ 0887823467 แฟกซ์ 02-0153201

Join เป็นสมาชิกร้านค้า

ร้านArduitronics
ร้านArduitronics
/www.arduitronics.com/
Join เป็นสมาชิกร้าน
2129
สมัครสมาชิกร้านนี้ เพื่อรับสิทธิพิเศษ

STATISTICS

หน้าที่เข้าชม15,392,048 ครั้ง
ผู้ชมทั้งหมด5,895,126 ครั้ง
เปิดร้าน21 พ.ค. 2556
ร้านค้าอัพเดท16 ก.ย. 2568

MEMBER

พูดคุย-สอบถาม