Skip to content

Instantly share code, notes, and snippets.

@alexeybondarenko
Last active August 8, 2017 20:26
Show Gist options
  • Save alexeybondarenko/4a2331aec3df702a3943397a1814976f to your computer and use it in GitHub Desktop.
Save alexeybondarenko/4a2331aec3df702a3943397a1814976f to your computer and use it in GitHub Desktop.
function handleMidiMessage(e) {
console.log(e);
if (!MIDIStream || e.data[0] !== 0x90) return;
MIDIStream.write(e.data);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment