Neo Love - 2015-03-15
#include <FluxSynth.h>

FluxSynth synth;

// Output routine for FluxSynth, using standard Serial.

bool sendMidiByte( byte B ) { 
  Serial.write( B );
  return true;
  }

void setup()
{
  Serial.begin( 31250 );         // MIDI baudrate

  synth.sendByte = sendMidiByte; // Assign output function.
  synth.begin();                 // Init the lib internals
  synth.GS_Reset();              // Enter GS mode

  // TODO: add additional setup, select patch, reverb, etc..          
}