Mixing Audio with the Arduino Audio Tools Library
I added some basic simple audio mixing functionality to my Arduino Audio Tools Library where we can mix multiple input audio streams together. Example Sketch We just need to define a Mixer and then add the different input streams that need to be mixed. Optionally we could define a weight parameter to the add method, which we did not do in the example below: #include “AudioTools.h” #include “AudioLibs/AudioKit.h” uint16_t sample_rate=32000; uint8_t channels = 2; SineWaveGenerator<int16_t> Read more




