Replies: 1 comment 3 replies
-
I don't think you need to add it to those methods, if you have a physical button connected to the Arduino, it's a matter of:
Filter and map are only here to alter the flow of incoming MIDI messages through the Arduino, we're kind of hacking them to fork to MIDI USB but ideally they should be free of side-effects. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi Francois,
I hope this is the last question for a while. I am using your setThruFilter and setThruMap methods. I am redefining how my white keys and black keys work on the fly. You helped with the outline of the following code (see below). I handle all my NoteOn and NoteOff (I only use white keys for playing) and I can use my black keys to do simple program changes (change instruments). This all works great (thank you). But, I have one other need and that is to be able to handle just one or two case of control changes - all notes off and all sounds off. I have a Panic button on my user interface and when they press it, I want to do the sendControlChange() myself. How do I add that functionality to setThruFilter() and setThruMap() methods?
Here's what's working.
Beta Was this translation helpful? Give feedback.
All reactions