Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove lines for checking for unhandled CCs #179

Merged
merged 1 commit into from
Feb 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions shared/duo/MidiFunctions.h
Original file line number Diff line number Diff line change
Expand Up @@ -127,15 +127,6 @@ void midi_send_cc() {
void midi_handle_cc(uint8_t channel, uint8_t number, uint8_t value) {
if(channel == MIDI_CHANNEL) {
switch(number) {
case 65:
//turn glide on or off
break;
case 80:
//turn delay on or off
break;
case 81:
//turn crush on or off
break;
case 123: // All notes off
note_off();
sequencer.release_all_notes();
Expand Down
Loading