Anyone have a simple example or library for loading and playing sounds from .wav files? Something that handles the heavy lifting and all I need to do is stuff like:
Trigger trigger; // defines a trigger object
trigger.LoadWav("snaredrum.wav"); // sets a wav file to the trigger object
trigger.PlayOnce; // plays the solo shot sound one time through. Repeated plays inturupts existing hits.
And likewise a library that handles the button control, much like EasyButton does for Arduino. https://www.arduino.cc/reference/en/libraries/easybutton/
Essentially, who has built libraries that can get me making music/sounds faster in Bela?
Thanks.