Mixer returns results = [out_right, out_left]
Main program uses power_left = ((mixer_results[0]) * 100) and should probably be power_left = ((mixer_results[1]) * 100) unless the left and right calcs in mixer are transposed (i.e. it might need correcting in two places).
Mixer returns
results = [out_right, out_left]
Main program usespower_left = ((mixer_results[0]) * 100)
and should probably bepower_left = ((mixer_results[1]) * 100)
unless the left and right calcs in mixer are transposed (i.e. it might need correcting in two places).