Files
firestuff/2006-06-06-korg-microkontrol-in-linux.html
2019-04-21 18:13:36 +00:00

27 lines
1.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!--# set var="title" value="KORG MicroKontrol in Linux" -->
<!--# set var="date" value="June 6, 2006" -->
<!--# include file="include/top.html" -->
<p>I recently picked up a <a href="http://www.korg.com/gear/info.asp?a_prod_no=microkontrol&amp;category_id=8">KORG MicroKontrol</a> from that local techno-crack peddler, Guitar Center. Short specs: 37-key keyboard (velocity sensitive), 16 pads (velocity sensitive), 8 sliders, 8 knobs, and a tempo knob that generates MIDI clock.</p>
<p>I had expected to plug this into my MIDI interface via the MIDI outputs on the back. However, as I left my MIDI cables at the theatre, I gave the USB interface a try. Much to my amazement, ALSA detected it as a USB MIDI device. Its a bit complicated; it acts a MIDI interface as well when plugged in via USB, so it has sub-interfaces. For example:</p>
<pre><code>amidi dump port hw:1,0,0
</code></pre>
<p>(its device 1, starting from 0, on my system)</p>
<p>This dumps input from the MIDI-IN port on the back of the device, but not generated by the device itself. To do that:</p>
<pre><code>amidi dump port hw:1,0,1
</code></pre>
<p>Then you spend 5 minutes or so hitting the keys really hard and watching the velocity numbers. Its fun.</p>
<p>It also has a 3rd channel for an unmapped “native mode”. I expected this to be a proprietary interface that they sold to application developers who wanted to better interface with the device. Apparently, however, its fully documented.</p>
<p>Why cant all hardware vendors be like this?</p>
<!--# include file="include/bottom.html" -->