We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3088afa commit 5d8b07cCopy full SHA for 5d8b07c
libraries/USB/examples/MIDI/MidiController/MidiController.ino
@@ -22,7 +22,7 @@ void loop() {}
22
#include "USBMIDI.h"
23
USBMIDI MIDI;
24
25
-#define MIDI_NOTE_C4 64
+#define MIDI_NOTE_C4 60
26
27
#define MIDI_CC_CUTOFF 74
28
@@ -69,7 +69,7 @@ void setup() {
69
Serial.begin(115200);
70
MIDI.begin();
71
USB.begin();
72
-
+ pinMode(BUTTON_PIN, INPUT_PULLUP);
73
primeControllerInputValue();
74
}
75
0 commit comments