Search found 2 matches

by khanware
Wed May 05, 2021 12:18 pm
Forum: General Discussion
Topic: ESP32 I2S microphone [RX] (SPH0645LM4H microphone)
Replies: 0
Views: 2670

ESP32 I2S microphone [RX] (SPH0645LM4H microphone)

I am trying to connect I2S mic (SPH0645LM4H-B mic) to ESP32 with no luck.

my code is given below:

#include "driver/i2s.h"
const i2s_port_t I2S_PORT = I2S_NUM_1;

void setup() {
Serial.begin(115200);
esp_err_t err;

// The I2S config as per the example
const i2s_config_t i2s_config = {
.mode ...
by khanware
Tue May 04, 2021 4:03 pm
Forum: ESP-IDF
Topic: I2S microphone (RX)
Replies: 61
Views: 160582

Re: I2S microphone (RX)

I am trying to connect I2S mic to ESP32 with no luck. (using SPH0645LM4H-B mic)

I am using the code below:

#include "driver/i2s.h"
const i2s_port_t I2S_PORT = I2S_NUM_0;

void setup() {
Serial.begin(115200);
esp_err_t err;

// The I2S config as per the example
const i2s_config_t i2s_config ...

Go to advanced search