master
Holger Wirtz 6 years ago
parent 4a40382dec
commit 41e8ac7a75
  1. 5
      MIDITESTER.ino

@ -41,6 +41,7 @@ void setup()
randomSeed(analogRead(A0));
/*
// Sound change 17
MIDI.sendNoteOn(MASTER_KEY_MIDI, 99, 1);
delay(500);
@ -95,6 +96,7 @@ void setup()
MIDI.sendNoteOff(MASTER_KEY_MIDI, 0, 1);
delay(5000);
*/
}
void loop()
@ -116,7 +118,8 @@ void sendMIDI(int8_t note, int8_t vel, int8_t chan, uint32_t dur)
MIDIEvents.add(m);
digitalWrite(LED, HIGH);
MIDI.sendNoteOn(note, vel, chan);
/* Serial.print(F("Sending MIDI on channel "));
/*
Serial.print(F("Sending MIDI on channel "));
Serial.print(chan);
Serial.print(F(" note "));
Serial.print(note);

Loading…
Cancel
Save