From 1e1e7f1ec13efe91a2bd912f2cb332ab7aaa9cc9 Mon Sep 17 00:00:00 2001 From: Lukas Bachschwell Date: Fri, 20 Nov 2015 17:09:38 +0100 Subject: [PATCH] Temporarily removed special function --- PringlesLooper.ino | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) mode change 100755 => 100644 PringlesLooper.ino 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); - } + // } }