We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 561972c commit fe731bcCopy full SHA for fe731bc
examples/Basic_IO/Basic_IO.ino
@@ -4,6 +4,11 @@
4
// Here, when receiving any message on channel 4, the Arduino
5
// will blink a led and play back a note for 1 second.
6
7
+// Some boards don't have this set (ESP32)
8
+#ifndef LED_BUILTIN
9
+#define LED_BUILTIN 0
10
+#endif
11
+
12
MIDI_CREATE_DEFAULT_INSTANCE();
13
14
void setup()
0 commit comments