Komut
end()
Açıklama
I2S giriş arayüzünü devre dışı bırakır ve ses verilerinin yakalanmasını durdurur
Sözdizimi
AudioInI2S .end ();
İadeler
Yok
Misal
…
// setup the I2S audio input for 44.1 kHz with 32-bits per sample
if (!AudioInI2S.begin(44100, 32)) {
Serial.println("Failed to initialize I2S input!");
while (1); // do nothing
}
// do some processing
// stop the input source
AudioInI2S.end();
…
// setup the I2S audio input for 44.1 kHz with 32-bits per sample
if (!AudioInI2S.begin(44100, 32)) {
Serial.println("Failed to initialize I2S input!");
while (1); // do nothing
}
// do some processing
// stop the input source
AudioInI2S.end();
…