Skip to content

Commit

Permalink
chore: Fix example board detection
Browse files Browse the repository at this point in the history
  • Loading branch information
franky47 committed Jul 18, 2023
1 parent fe731bc commit a6b3317
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/AltPinSerial/AltPinSerial.ino
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// Here, when receiving any message on channel 4, the Arduino
// will blink a led and play back a note for 1 second.

#if defined(ARDUINO_SAM_DUE) || defined(SAMD_SERIES) || defined(_VARIANT_ARDUINO_ZERO_) || defined(ARDUINO_NANO33BLE)
#if defined(ARDUINO_SAM_DUE) || defined(SAMD_SERIES) || defined(_VARIANT_ARDUINO_ZERO_) || defined(ARDUINO_ARDUINO_NANO33BLE)
/* example not relevant for this hardware (SoftwareSerial not supported) */
MIDI_CREATE_DEFAULT_INSTANCE();
#else
Expand Down

0 comments on commit a6b3317

Please sign in to comment.