Temporarily removed special function

This commit is contained in:
Lukas Bachschwell 2015-11-20 17:09:38 +01:00
parent 5f0dc82993
commit 1e1e7f1ec1
1 changed files with 3 additions and 3 deletions

6
PringlesLooper.ino Executable file → Normal file
View File

@ -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);
}
// }
}