You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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).
The text was updated successfully, but these errors were encountered:
Mixer returns
results = [out_right, out_left]
Main program uses
power_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).The text was updated successfully, but these errors were encountered: