diff --git a/PringlesLooper.ino b/PringlesLooper.ino old mode 100755 new mode 100644 index 223af25..8bb4180 --- a/PringlesLooper.ino +++ b/PringlesLooper.ino @@ -87,7 +87,7 @@ void loop() { tempState = digitalRead(i); if(tempState != oldValues[i-2]){ - if(i == 10) + /* if(i == 10) { if(tempState == 0) MIDI.sendNoteOn(pedalNote, 127, 1); @@ -119,12 +119,12 @@ void loop() { MIDI.sendNoteOff(clearNote, 0, 1); } else - { + {*/ if(tempState == 0) MIDI.sendNoteOn(i, 127, 1); else MIDI.sendNoteOff(i, 0, 1); - } + // } }