Name
   
  Examples
MidiOut midiOut; 
 
void setup() 
{ 
  // Make a new MidiOuputObject and open it
  midiOut = new MidiOut();
midiOut.showAvailableOutputs();
midiOut.openOutput(1);
midiOut.setNoteOn(0,48,127); midiOut.setController(0,0,59); midiOut.setNoteOff(0,48); }

  Description Object for sending Midi-Data. Before a MidiOutput is used, it must be opened with the openOutput() function. It is possible to get the available outputs via the showAvailableOutputs() function.
   
  Syntax
MidiOut.name 
name.availablePorts
   
  Parameters
name   any legal variable name
   
  Usage Application
   
  Related openOutput ()
showAvailableOutputs()