Introduction: Building an Arduino MIDI Controller

This instructable was originally published on my blog on June 28, 2020.

I enjoy building stuff that includes electronics, and I always wanted to build something using Arduino.

One of the most common builds for beginners I found was a MIDI controller. A MIDI controller is any hardware that sends MIDI data (Musical Instrument Digital Interface) to a device to trigger sounds and make music.

I found that many implementations are complicated, even those that are for beginners. It was very frustrating to find I need to use hundreds of lines of unreadable code. Or that I need to solder a resistor in some cases, among other examples.


The Project

By building my own Arduino MIDI Controller, my intention was to make an enjoyable project, keeping the noise at the lowest. Something any beginner could follow. To accomplish that, I used the MIDI Fighter 3D as a base inspiration and removed every non-essential feature.

The total cost of my project was under $30, and the list of materials was really short (affiliate links):


The Arduino Board

When I started this project I found there are a bunch of new Arduino models (not including the hundreds of compatible boards). And all of them offer slightly different capabilities.

I needed to send MIDI signals to a computer and the simplest way to do that is through USB. Any Arduino board based on the ATmega32u4 microcontroller has built-in USB communication.

The official Arduino boards with native USB support are Arduino Due, Arduino Zero, Arduino Leonardo, Arduino Micro. These boards have integrated USB support which means they can act as a USB MIDI device.

I decided to go with a clone of the Arduino Leonardo. It has enough inputs for this project and it also includes headers, which makes it easier to plug/unplug wires.


First Steps

Although I'll explain step-by-step how I implemented the code for this project, you can download the final version.

To upload code to the board you need to use the Arduino IDE. They also have a Web editor that is very useful but they have a limited quota on times per day that you can compile code.

Step 1: Blinking the Built-in LED

It's funny how the "Hello World" in the world of hardware is blinking an LED.

It was a nice surprise for me to discover that Arduino Leonardo has a built-in LED that you can blink to test your code. That way you don't need to build an external circuit on a breadboard with an LED and a resistor.

Code: https://gist.github.com/lean8086/4a4d95c33e937a295...

Step 2: Blinking the LED on Manual Input

The next logical step was to blink the same LED whenever I send a signal. I removed the plastic cover of one end of 2 Dupont wires, and connected the other end to the board:

  • Pin number 2: One of the digital inputs (positive). It could be any digital pin.
  • Pin GND: Any ground pin (negative).

Now, every time I join the exposed ends of the wires I'm closing the circuit and thus I can execute code in consequence.

Each of the 20 digital pins on the Leonardo has an internal resistor (disconnected by default) that can be enabled using INPUT_PULLUP. Keep in mind that a pull-up input means the button state is inverted:

  • HIGH when the circuit is open (button is NOT pressed).
  • LOW when the circuit is closed (button is pressed).

Code: https://gist.github.com/lean8086/a61e24e691c4ef188...

Step 3: Installing the MIDIUSB Library

This library allows an Arduino board with USB capabilities to act as a MIDI instrument over USB. Check the official documentation for more info.

Using the Arduino IDE, you can install extra Arduino Libraries using the Library Manager:

  1. Open the IDE and click on the "Sketch" menu, then "Include Library", then "Manage Libraries".
  2. Search for MIDIUSB and click Install.
  3. Once it has finished, an Installed tag should appear next to the MIDIUSB library.
  4. Close the Library Manager.

Now the Leonardo can send MIDI messages via USB! But first, some insight about how MIDI works is needed.


How MIDI Works

"MIDI (Musical Instrument Digital Interface) is a standard communication protocol that connects electronic musical instruments, computers, and related audio devices for playing music." — Wikipedia

It handles event messages with data of the pitch and velocity of the note played, among other instructions.

In this specific project, the input from the 16 buttons sends different messages via USB. These messages can be converted into sound on a computer using any suitable software like GarageBand or Ableton Live.


Anatomy of a MIDI message

To send a MIDI message, I used the sendMIDI() method from the MIDIUSB Library I installed on step 3.

This method can receive 4 parameters:

  • Event type: It can be 0x09 for note On (play note) or 0x08 for note Off (stop playing note).
  • Note On/Off: The event type combined with the MIDI channel (1-16). I only use channel 1 so it's either 0x90 for note On or 0x80 for note Off.
  • Note number: Each note has an associated numeric pitch (frequency scale).
  • Velocity: From 0 (no velocity) to 127 (fastest).

Step 4: Sending a MIDI Message

I included the MIDIUSB Library and instead of blinking the built-in LED, I sent a note.

Code: https://gist.github.com/lean8086/36df2295fffb39fe3...

⚠ Important: From this step onwards the Arduino turns into a MIDI USB Controller, and it stops receiving code via USB.

When you get stuck in a position where the Arduino can no longer be programmed, follow these steps:

  1. Hold down the rounded reset button on the Arduino board.
  2. Click Upload on the Arduino IDE.
  3. Release the reset button.
  4. The updated code will be uploaded to the board.

Step 5: Sending a MIDI Message From Each Button

The final step was to map every pitch to a button. For the 16 buttons, I defined a scale from C2 to E3b, which are the pitches from 36 to 51 in a sequence from bottom to top and from left to right. Check out this file from Arduino Tutorials to see what pitch corresponds to each note.

I used digital pins from 2 to 12 and analog pins (using them as digitals) from A0 to A4.

And this is how the final code looks like https://gist.github.com/lean8086/7de896c3b8f29d15e...

Step 6: Setting Up Channels or Banks (optional)

In case you want to add more buttons with the ability to switch channels or banks, like in the MIDI Fighter 3D (see image), the Arduino Leonardo has four more pins you can use. The Arduino Leonardo has 20 digital input/output pins, of which only 16 are in use for playing notes.

You can use those extra buttons to update a variable in the code, and send its value as a parameter to the MidiUSB.sendMIDI method:

https://gist.github.com/lean8086/ec8da7486ec3621f9f0b90542a06fcea

Step 7: The Case

To keep this project simple, I was extremely picky about choosing which features include.

  • Buttons only: 16 Sanwa-like arcade buttons, in a 4x4 grid. No knobs, no sliders, no faders, or any other analog input.
  • Unibody case: Use no screws, nuts, bolts, or glue for the enclosure or to hold the Arduino board.
  • Everyday tools: For example, I soldered the wires instead of buying a specific wire clipper for the arcade buttons.


Unibody Design

One of the challenges I faced was designing a case simple enough that it doesn't need assembly and can be 3d printed in one single run.

To avoid using screws or glue, I needed to design an enclosure that provides the smallest access to the electronics. My biggest inspiration for the enclosure was the Mac Mini, which has a circle shaped hole at the bottom. I also wanted to design a screwable lid for that, but I decided to let it open to expose the electronics.

Download the 3d printable case (322 KB). Recommended settings: PLA, 0.15mm layers, 20% infill, support enforcers at least for the rounded bottom hole, the Arduino holders, and the micro USB.


Holding an Arduino with no screws

The Leonardo has 4 holes to screw the board into any suitable case, but my idea was to make it easy to add and remove the board from the case.

Finding a clip holder for Arduino on Thingiverse was easy, and it took me 5 iterations to integrate that holder to the unibody desing. The most difficult part was making its legs to avoid the holes for the buttons, and to make the micro USB to be center aligned to the case.

Step 8: The Assembly

After inserting all the buttons in place, I soldered short black wires joining all the negative legs of the buttons between them.

Then I soldered long red wires from each positive leg to connect directly to the board.

To connect the wires to the Arduino, I cut and soldered some Dupont ends and covered them with heat-shrink tubing.

I connected the wires to the board following the same order as in the MIDI Fighter. From bottom to top and from left to right.

Step 9: Using the MIDI Controller

Any music software (or suitable hardware) can be used to receive MIDI and make some music. The most recommended ones are Garage Band, Ableton Live, and I know there are a bunch of apps to install on a phone.

All those tools are useful for loading predefined sounds for finger drumming, but they were made for bigger purposes. Those tools can be tough for beginners to set up.

MIDI in the Web browser

To make something more aligned with this project and its simplicity, I built a Web tool completely focused on MIDI controllers.

Punchy: WebMIDI and WebAudio implementation for MIDI controllers.

It can read MIDI messages on any browser that supports the WebMIDI JavaScript API. Then it plays sounds in a synthesizer (using the WebAudio API) or in a sampler, loading custom sounds from any sound pack.

Set up Ableton Live

To make the MIDI Controller work with Ableton Live, follow these simple steps from their official documentation.

Go to Preferences → Link MIDI and make sure the "Input" has "Track" and "Remote" ON and the output has "Remote" ON as well as mentioned in the guide: