Personal Mirror
Go to file
Francois Best 5ccf0159a2 feat: Serialise USB MIDI packets into the serial RX buffer 2018-11-04 10:07:21 +01:00
.vscode feat: Compose TX USB MIDI packets from serial buffer 2018-11-03 18:59:20 +01:00
builder feat: Increase warning level for sources 2018-03-10 17:44:16 +01:00
doc fix: Issue link in documentation 2018-03-10 17:07:55 +01:00
examples Add dep to MidiUSB for specific example & guards for non-usb boards. 2016-11-02 00:05:27 +01:00
external chore: Point MIDI-USB submodule to own fork for unit testing 2018-11-03 18:56:11 +01:00
res Added library manager screenshot 2017-08-25 15:29:07 +02:00
src feat: Serialise USB MIDI packets into the serial RX buffer 2018-11-04 10:07:21 +01:00
test feat: Serialise USB MIDI packets into the serial RX buffer 2018-11-04 10:07:21 +01:00
.editorconfig chore: Add VSCode config files & editor settings 2018-10-11 10:32:26 +02:00
.gitignore This file is generated when CMake config changes. 2016-10-03 21:40:21 -07:00
.gitmodules chore: Point MIDI-USB submodule to own fork for unit testing 2018-11-03 18:56:11 +01:00
.travis.yml Teensy does not handle Arduino's USB api. 2016-11-02 09:17:39 +01:00
CMakeLists.txt Moved stuff to builder. Added code coverage. 2016-10-08 02:36:15 +02:00
CONTRIBUTING.md fix: correct sequence of commands for submodules 2017-10-08 09:49:36 +02:00
LICENSE Added badges and license file. 2016-10-03 12:04:44 -07:00
README.md doc: Update links 2018-10-11 11:45:46 +02:00
ReleaseNotes.md Updated readme. 2016-11-02 10:01:33 +01:00
keywords.txt Use correct separator in keywords.txt 2017-12-13 14:56:35 -08:00
library.json chore: Bump version to 4.4.0 2018-03-10 15:44:46 +01:00
library.properties chore: Bump version to 4.4.0 2018-03-10 15:44:46 +01:00

README.md

Arduino MIDI Library

Build Status Coveralls GitHub release License

This library enables MIDI I/O communications on the Arduino serial ports.

Features

  • Compatible with all Arduino boards (and clones with an AVR processor).
  • Simple and fast way to send and receive every kind of MIDI message (including all System messages, SysEx, Clock, etc..).
  • OMNI input reading (read all channels).
  • Software Thru, with message filtering.
  • Callbacks to handle input messages more easily.
  • Last received message is saved until a new one arrives.
  • Configurable: overridable template-based settings.
  • Create more than one MIDI port for mergers/splitters applications.
  • Use any serial port, hardware or software.

Getting Started

  1. Use Arduino's Library Manager to install the library. Type "MIDI" in the Arduino IDE Library Manager

  2. Start coding:

     #include <MIDI.h>
    
     // Created and binds the MIDI interface to the default hardware Serial port
     MIDI_CREATE_DEFAULT_INSTANCE();
    
     void setup()
     {
         MIDI.begin(MIDI_CHANNEL_OMNI);  // Listen to all incoming messages
     }
    
     void loop()
     {
         // Send note 42 with velocity 127 on channel 1
         MIDI.sendNoteOn(42, 127, 1);
    
         // Read incoming messages
         MIDI.read();
     }
    
  3. Read the documentation or watch the awesome video tutorials from Notes & Volts.

Documentation

Contact

To report a bug, contribute, discuss on usage, or simply request support, please create an issue here.

You can also contact me on Twitter: @fortysevenfx.

License

MIT © 2009 - present Francois Best