The most common microphone on Amazon as of 2025-September.
| 151 | public: |
| 152 | // The most common microphone on Amazon as of 2025-September. |
| 153 | static Config CreateInmp441(int pin_ws, int pin_sd, int pin_clk, |
| 154 | AudioChannel channel, u16 sample_rate = 44100ul, |
| 155 | int i2s_num = 0) FL_NOEXCEPT { |
| 156 | ConfigI2S config(pin_ws, pin_sd, pin_clk, i2s_num, channel, sample_rate, |
| 157 | 16); |
| 158 | Config out(config); |
| 159 | out.setMicProfile(MicProfile::INMP441); |
| 160 | return out; |
| 161 | } |
| 162 | |
| 163 | // ICS-43434 I2S MEMS microphone (TDK InvenSense). |
| 164 | static Config CreateIcs43434(int pin_ws, int pin_sd, int pin_clk, |
nothing calls this directly
no test coverage detected