Replies: 1 comment
-
Your first code excerpt should work fine. This is what I just tried and it works for me in Node: WebMidi.inputs.forEach(input => {
input.addListener("midimessage", e => console.log(e.message.type));
}); Is there anything special with your environment ? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I would like to listen to all midi message. currently I have to add a listener for each message type. note-on, note-off, control-change.
I am using the following and its not working
I also tried the following
Beta Was this translation helpful? Give feedback.
All reactions