Making a simple MIDI Controller. One Man's Journey

Rob, you just went way over my head. LOL

I got my Fluxamasynth in the mail yesterday. So far I can not get any sound out of it.
I wonder if it has something to do with the "pin select jumper"
I can see that the UNO is transmitting. And I can Serial Monitor a Potentiometer connected through the
Fluxamasynth.

The getting started instructions @ http://moderndevice.com/documentation/fluxamasynth-quickstart-guide/
kinda suck for me, because it assumes I know something about jumpers.

Any advice on getting this thing to make some sound with this sketch?

#include <Fluxamasynth.h>

Fluxamasynth synth;     // create a synth object

int note=60;            // C4 on keyboard
int bend=512;           // midpoint of pitch bend range

void setup() {
  synth.setMasterVolume(255);            // max volume
  synth.setChorus(0, 5, 127, 127, 127);  // turn on Chorus effect
  synth.programChange(0, 0, 58);         // set instrument to Trombone
  synth.pitchBendRange(0, 127);          // set pitch bend to maximum range
  synth.noteOn(0, note, 64);             // play C4
  Serial.begin(9600);
}

void loop() {
  int sensorValue = analogRead(A0);
  Serial.println(sensorValue);
  delay(1); 
  bend=analogRead(0);
  synth.pitchBend(0, bend);  
}

You seem to know a hell of a lot about this shield.