Controlling traktor pro using Arduino issue MIDI

Hey there, I wish to create a midi controller to control the remix decks of traktor pro.

but I have a few issues with sending the midi signals
I use Hairless, as midi to serial bridge http://projectgus.github.com/hairless-midiserial/

the problem I'm getting is that I get kind of corrupt data, I'm using the midi library Arduino Playground - MIDILibrary

I recored a video where I show you whats my problem.

Please watch video in 1080p so you can see the warnings and the code

if you don't wish to wast 3 minutes of your life.
I'm getting uncomplete midi data according to Hairless and if I check in traktor, the notes constantly switches (see video around 55sec).

Error message from hairless: Warning: got a status byte when we were expecting 1(some times it says 2) more data bytes, sending incomplete MIDI Message 0x80 (this last may change also)

my arduino code is found here: #include <MIDI.h>#define LED 13 // LED pin on Arduino boardvoid setu - Pastebin.com

I hope someone knows the solution to my problem :smiley:

Grtz Tom. aka Thyvo

EDIT: sorry I messed up somehow you may delete this post moderator :smiley:

The solutions is use:

MIDI.begin();
Serial.begin(115200);

and NOT:

MIDI.begin(MIDI_CHANNEL_OMNI);

on the setup.
Following the tip in the documentation: The Hairless MIDI<->Serial Bridge

I hope tu be useful :wink:
Marc