Tell me more ×
Audio-Video Production Stack Exchange is a question and answer site for engineers, producers, editors, and enthusiasts spanning the fields of audio, video, and media creation. It's 100% free, no registration required.

What would it take for me to build something similar to the mockup below?

MIDI Controller Mockup

share|improve this question
Which model is the one in the picture? – user1319 Aug 21 '11 at 18:36
It's a mockup I made in photoshop. – c00lryguy Aug 24 '11 at 18:05

3 Answers

up vote 5 down vote accepted

An Arduino is a great choice if you want to dabble in a little DIY MIDI. I've got a Mega here that I'm building a foot controller around for some outboard MIDI gear. There are plenty of libraries out there already for sending MIDI CC and PC messages from Arduino. And there are some USB shield modules already that make it easy to interface with your PC.

One of the big benefits of using an Arduino for this stuff is it has built-in encoders that take a differential voltage signal from a standard potentiometer and convert it in to a digital value you can sample from your code. Most of the Arduino models have 5-10 of these analog sampling lines on them. Makes it way easier to build this sort of stuff when you don't have to figure out how to do the analog value sampling or fuss with digital rotary encoders.

There's a great tutorial on RogueScience's site that walks through building a MIDI-sending Arduino project with a MIDI-USB bridge and everything. It assumes very near to zero experience with Arduino and programming.

share|improve this answer

I'm almost finished a midi controller using one of these.

http://halemicro.com/Products/Products.html

share|improve this answer

There are MIDI controller kits you can use. I haven't used this, so I can't recommend it, but it seems to fit the bill:

http://highlyliquid.com/midi-controllers/midi-cpu/

There are also midi kits for the Arduino project, but it seems like overkill:

http://tomscarff.110mb.com/products_prices.htm

share|improve this answer
That little board there would be perfect! The price is right too. – Brad Feb 16 '11 at 14:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.