We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6adeca4 commit f6cbea1Copy full SHA for f6cbea1
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
libraries/USB/src/USBHIDMouse.h
@@ -34,8 +34,6 @@
34
#define MOUSE_FORWARD 0x10
35
#define MOUSE_ALL 0x1F
36
37
-#include "./tusb_hid_mouse.h"
38
39
enum MousePositioning_t {
40
HID_MOUSE_RELATIVE,
41
HID_MOUSE_ABSOLUTE
libraries/USB/src/tusb_hid_mouse.h
0 commit comments