From e06e3677f06f6050a60693070be7fad01b293b59 Mon Sep 17 00:00:00 2001 From: lathoub <4082369+lathoub@users.noreply.github.com> Date: Mon, 20 Apr 2020 13:09:39 +0200 Subject: [PATCH] bug fix: HardwareSerial => SoftwareSerial --- examples/AltPinSerial/AltPinSerial.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/AltPinSerial/AltPinSerial.ino b/examples/AltPinSerial/AltPinSerial.ino index 7e5e90a..3e06dcc 100644 --- a/examples/AltPinSerial/AltPinSerial.ino +++ b/examples/AltPinSerial/AltPinSerial.ino @@ -9,7 +9,7 @@ int rxPin = 18; int txPin = 19; SoftwareSerial mySerial = SoftwareSerial(rxPin, txPin); MIDI_NAMESPACE::SerialMIDI serialMIDI(mySerial); -MIDI_NAMESPACE::MidiInterface> MIDI((MIDI_NAMESPACE::SerialMIDI&)serialMIDI); +MIDI_NAMESPACE::MidiInterface> MIDI((MIDI_NAMESPACE::SerialMIDI&)serialMIDI); void setup() {