Hello everybody
i´ve built an Arduino Mega based Midi Controller…
Midi Output from Arduino works so far!
I´m using the Arduino Midi Library and the Hairless Midi Serial bridge so that i just need to Plug the USB.
I´m working with the Baudrate 115200 and as said above, midi Input (Arduino → Traktor) works flawless.
So now i want some MIDI Visualisation on my controller (light up some LED´s for example)
and i just cant get it working.
For troubleshooting i tried it with the simple Midi Input Example sketch. I modified it a little :
and
#include <MIDI.h>
void HandleNoteOn(byte channel, byte pitch, byte velocity) {
digitalWrite(13,HIGH);
}
void setup() {
MIDI.begin(MIDI_CHANNEL_OMNI);
Serial.begin(115200);
MIDI.setHandleNoteOn(HandleNoteOn);
}
void loop() {
MIDI.read();
}
As said in the Hairless MIDI FAQ i added the Serial.begin(115200); before the MIDI Begin.
When i send a Note on (or anything else) from Traktor, i see the RX Led flashing.
But nothing happens…
Does anybody know,if the Serial - Midi Converter isnt capable to convert the MIDI from Traktor into an Arduino MIDI Library compatible format?
Thanks for the help!
Have a good day!