i recenctly install Audio library from h4yn0nnym0u5e
library link
i try simple WavFilePlayer example
as this code is repeating file, I used for single file (15.wav)
but I don't want write File name again and again. my SD card will contail so many files.
is there a single function ?? that allow running file in repeat_mode or single shot .
somthing like this
for play loop mode seamlessly
for play single shot
is this Library having also playback speed control funtions ???
library link
i try simple WavFilePlayer example
as this code is repeating file, I used for single file (15.wav)
Code:
!playWav1.isPlaying();
{ playWav1.play("15.WAV"); }
is there a single function ?? that allow running file in repeat_mode or single shot .
somthing like this
for play loop mode seamlessly
Code:
playWav1.play("15.WAV");
playWav1.playMode(repeat); // for hint only
Code:
playWav1.play("15.WAV");
playWav1.playMode(none); // for hint only
is this Library having also playback speed control funtions ???