Komut
isPlaying()
Açıklama
Girdi şu anda play () veya loop () kullanılarak başlatılırsa sorgu
Sözdizimi
AudioOutI2S .isPlaying ();
İadeler
1 giriş şu anda oynatılıyorsa, 0
Misal
…
// check if playback is still going on
if (!AudioOutI2S.isPlaying()) {
// playback has stopped
Serial.println("playback stopped");
while (1); // do nothing
}
…
// check if playback is still going on
if (!AudioOutI2S.isPlaying()) {
// playback has stopped
Serial.println("playback stopped");
while (1); // do nothing
}
…