-
I looked for this in sample code and couldn't find it, and also tried figure this out from the documentation but cannot. I just need to know how to send the proper command to turn all notes off. Thank you in advance! |
Beta Was this translation helpful? Give feedback.
Answered by
franky47
Mar 5, 2021
Replies: 1 comment 1 reply
-
The MIDI specification specifies CC 123 for AllNotesOff, and there is an alias for it so this should do the trick: MIDI.sendControlChange(midi::AllNotesOff, 0, yourChannelHere); |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
franky47
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The MIDI specification specifies CC 123 for AllNotesOff, and there is an alias for it so this should do the trick:
MIDI.sendControlChange(midi::AllNotesOff, 0, yourChannelHere);