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 Use this function to send a noteOn on a certain channel, with a given pitch and velocity.
   
  Syntax
name.setNoteOn(channel,pitch,velocity)
   
  Parameters
channel   int: Number of the Midichannel (0-15)
pitch   int: pitch of the send note (0-127)
velocity   int: velocity of the send note (0-127)
   
  Usage Application
   
  Related setController()
setNoteOff()