Hello everyone,
I’m currently working on building a sound effect and voice mixer using a wavtooeasy and esp32. The board is great for my project since I need to play multiple soundeffects simultaneously. However, I’ve run into a couple of issues and could really use some help from the community.
- Is there a way to specify folders or instances for placing my wavs inside different folders? For example, I’d like to send something like:
playFile("/folder1/001.wav", 1);
or
playFile("set1/1.wav", 2);
- Alternatively, I was considering having the STM32 poll 6 buttons and then playing the wav based on the contents of a text file that contains the wavs location on the SD card. Could anyone provide some guidance on how to implement this?
Any help or suggestions would be greatly appreciated. Thanks in advance!