chore: Fix SoftwareSerial example on Arduino Zero

This commit is contained in:
Francois Best 2021-08-10 14:46:55 +02:00
parent 3d6eb7dc91
commit 61d176c407
1 changed files with 1 additions and 1 deletions

View File

@ -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)
#if defined(ARDUINO_SAM_DUE) || defined(SAMD_SERIES) || defined(_VARIANT_ARDUINO_ZERO_)
/* example not relevant for this hardware (SoftwareSerial not supported) */
MIDI_CREATE_DEFAULT_INSTANCE();
#else