From dfe31bc791cd55424ba8a2b06dde5abc8394bb39 Mon Sep 17 00:00:00 2001 From: Bruce Brown <1st-BrainStormer@users.noreply.github.com> Date: Tue, 2 Jan 2018 11:52:12 -0800 Subject: [PATCH] Add files via upload --- libraries/midi/src/Midi.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libraries/midi/src/Midi.cpp b/libraries/midi/src/Midi.cpp index 9df45a7a26..9597d03d30 100644 --- a/libraries/midi/src/Midi.cpp +++ b/libraries/midi/src/Midi.cpp @@ -31,14 +31,13 @@ const int MIDI_SHIFT_PITCH_BEND = 9; const int MIDI_NOTE_OFF = 0x8; const int MIDI_NOTE_ON = 0x9; const int MIDI_POLYPHONIC_KEY_PRESSURE = 0xa; -const int MIDI_CONTROL_CHANGE = 0xb; const int MIDI_PROGRAM_CHANGE = 0xc; const int MIDI_CHANNEL_PRESSURE = 0xd; const int MIDI_PITCH_BEND_CHANGE = 0xe; const int MIDI_SYSTEM_MESSAGE = 0xf; #endif - +const int MIDI_CONTROL_CHANGE = 0xb; const int MIDI_CHANNEL_MODE_ALL_NOTES_OFF = 0x07b; static Midi* instance = NULL; // communicate this to non-class callbacks