Add midi event support. We can use https://gitlab.com/gomidi/midi Event handling could look like this: ```js function onMidi(c, event) { if (event.key == "C3") { // do stuff } if (event.velocity > 90) { // do stuff } } ```
Add midi event support.
We can use https://gitlab.com/gomidi/midi
Event handling could look like this: