|
|
|
@ -566,7 +566,6 @@ void handleControlChange_MIDI_DEVICE_USB(byte inChannel, byte inData1, byte inDa |
|
|
|
|
|
|
|
|
|
void handleNoteOn(byte inChannel, byte inNumber, byte inVelocity) |
|
|
|
|
{ |
|
|
|
|
Serial.println("NON"); |
|
|
|
|
if (checkMidiChannel(inChannel)) |
|
|
|
|
{ |
|
|
|
|
ep->noteOn(inNumber, inVelocity); |
|
|
|
@ -575,7 +574,6 @@ void handleNoteOn(byte inChannel, byte inNumber, byte inVelocity) |
|
|
|
|
|
|
|
|
|
void handleNoteOff(byte inChannel, byte inNumber, byte inVelocity) |
|
|
|
|
{ |
|
|
|
|
Serial.println("NOFF"); |
|
|
|
|
if (checkMidiChannel(inChannel)) |
|
|
|
|
{ |
|
|
|
|
ep->noteOn(inNumber, 0); |
|
|
|
|