Replies: 2 comments 1 reply
-
I'm not exactly sure what you are asking. You say "What i don't understand is why i can't monitor outgoing (and maybe also incoming) CC''s." To that, I respond that you can indeed monitor incoming CC messages. This is done with the const channel = WebMidi.getInputByName("some_input").channels[1];
channel.addListener("controlchange", e => console.log(e)); You cannot monitor outgoing CC messages per se but, since you are the one sending them via your code, you already know when they are going out and are free to do whatever else pleases you. The I hope this helps. |
Beta Was this translation helpful? Give feedback.
-
I use Midi Monitor.app on my Mac and can see outgoing CC messages just fine. There's probably something else at play here.
Having |
Beta Was this translation helpful? Give feedback.
-
Hi,
thanks for this great library.
What i don't understand is why i can't monitor outgoing (and maybe also incoming) CC''s. It is a typescript node app bundled for the browser.
As hardware i have a Kemper Amplifier, in the Manual is stated that a icon would be shown if messages are received.
When sending this the so called rig, changes as expected, but no icon is shown, and i also can't see any CC Messages on the Midi Connection... (using midisnoop on linux)?
Why is this important ?
Because i am doing just a timeout after sending controlchange to know when the device did switch to a new (so called) "rig". Now i just don't know when this message was sent. (and another thing i have to ask in the forum of the device: normally the device can reflect the actions as midi, so i can wait for a specific message -> in this example the sent Control Change).
Afterwards I request various other parameters via SYSEX (which i "await" by timestamps ).
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions