Sends a “note on” MIDI message to a specified MIDI channel with a given note number and velocity.
midi_note_on(channel, note_number, velocity)
Send a “note on” message for channel 1, note 60 (Middle C) with velocity 0.8
midi_note_on(1, 60, 0.8); // returns 1 if successful
Send a “note on” message for channel 0, note 64 (E4) with velocity 0.5
midi_note_on(0, 64, 0.5); // returns 1 if successful