Sends a “note off” MIDI message to a specified MIDI channel with a given note number and optional velocity.
midi_note_off(channel, note_number, [velocity])
Send a “note off” message for channel 1, note 60 (Middle C) with velocity 0.5
midi_note_off(1, 60, 0.5); // returns 1 if successful
Send a “note off” message for channel 0, note 64 (E4) with default velocity 0
midi_note_off(0, 64); // returns 1 if successful