Arduino MIDI Library v4.0
Changelog
Version 4.0 brings the following changes:
- Multiple instances: create multiple MIDI ports for merger/splitter applications
- Support for SoftwareSerial
- Bug fixes
Compatibility
When upgrading from v3.2, you might need to add the midi namespace to message types (like NoteOn, ControlChange etc..)
Eg: the following code:
if (MIDI.getType() == NoteOn)
will become:
if (MIDI.getType() == midi::NoteOn)