DIY MIDI

DIY MIDI

No programming, 16 analog inputs, 16 buttons, 16 LEDs and the ability to easily expand these, add other things like screens and other funky sensors.

Building a DIY MIDI controller with this board is as easy as simply soldering your buttons and potentiometers to the board, plugging it in, and using it with your favourite music software.

Soldering on the headers

You might already be familiar with these headers but today we're going to be using them in a slightly unfamiliar way. In order to maintain a lower profile and to have easy access to the Arduino's pins we're going to solder the Arduino directly onto the PCB, using the short side of the headers to connect them.

You don't have to worry too much about the alignment of the pins but if you happen to have a breadboard its easiest to mount the headers on it while soldering so they end up nice and perpendicular.

Testing the board

Test often and with each step so you catch errors as soon as possible. You should check now if you've soldered everything correctly and there are no accidental shortcuts.

Uploading the code

The Arduino board does not come with the code uploaded already so we're going to do this first and fortunately this is super easy.

  1. Download the Arduino IDE
  2. Download the code for the MIDI board
  3. Add the Pro Micro as a board to the IDE (instructions here)
  4. Select the proper port in the Arduino IDE menu
  5. Hit "Upload" to upload the code to the Arduino

At this point you should test if the board is working correctly. Use a wire to short one of the button inputs an check if a MIDI note is being sent.

Wiring everything up

Some key concepts:

  1. Ground(-) and VCC(+) are chain-able so you don't need to run individual wires back to the board for every component.
  2. Wires shouldn't be too long but as long as they're not longer than 50CM you definitely don't have to worry about it.
  3. The LED's have a polarity, this means it matters which side you connect to the negative and positive lead.
  4. For the potentiometers this doesn't necessarily matter except for that it will invert your controls (left will become right in the software and right left).