Skip to content

Arduino MIDI Library v4.0

Compare
Choose a tag to compare
@franky47 franky47 released this 13 Feb 22:22
· 345 commits to master since this release

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)