tierneytim / btAudio

Bluetooth Audio for Arduino
196 stars 29 forks source link

Stereo to mono? #11

Closed brad-colbert closed 3 years ago

brad-colbert commented 3 years ago

Still, and again, awesome work! Thanks!

Is there a way to merge left and right data to produce the same audio on both output channels?

tierneytim commented 3 years ago

yes, should be very easy. If you look here you could do the following

fy[0]= (fy[0]+fy[1])/2;
fy[1]= (fy[0]+fy[1])/2;