Hi Ben
Looks interesting, though reading up on it it looks like you need a peripheral on the MCU to drive it. Looks like some I2S peripherals might e able to drive it so I'll keep it in mind while I'm looking at the I2S stuff
I have read more about the MEMS Microphone. There are two type of MIC, PDM and I2S. So I'm more interested in the I2S MIC.
This MIC looks easier and more practical than the PDM and the I2S Bus can be use for much more than a just MIC.
So my wish changed to a component for the I2S bus and not special for the PDM MIC.
What I know that some PIC32, STM32, ESP32, raspberry pie have few I2S ports already
I'll take a look at my PIC32MZ2048EFG100.It should have 6 of theme.
regards
Stefan
some info about the two MIC: PDM vs I2S
digital microphones are available with two different output formats: PDM and I2S. The output of a PDM (pulse density modulation) microphone is a 1-bit high sample rate data stream that is the direct output of the Sigma-Delta modulator that's in the mic. The sample rate of this PDM stream is typically between 1 and 3.25 MHz. Before this PDM data can be further processed, it needs to be decimated to a lower sample rate that other devices, such as codecs and DSPs, can handle.
This decimation filter is implemented in the codec or DSP to which the PDM microphone is connected. The output of this filter gives data at a lower sample rate, typically between 16 and 48 kHz.
A microphone with an I2S output, has all of the same pieces of the signal chain as the PDM chain, but the places where each piece is implemented is slightly different. An I2S output digital microphone includes the decimation filter, so its output is already at a standard audio sample rate that's easy to interface to and process. Since this filter is implemented in the microphone, the Mic can connect directly to a DSP or microcontroller with an I2S input. This saves components in systems that don't otherwise need an ADC or codec, and saves the processor from the burden of implementing the decimation filter, either in hardware or in software.
A PDM microphone does have other advantages over an I2S mic. The PDM microphone typically has a smaller footprint, and only requires two signals (clock and data) for operation, while I2S requires three (data, frame clock, bit clock).