Last few weeks I've spent my time developing a custom arduino board which reads sensors en outputs midi. It's made for a student who is developing it's own instrument. It's gonna look very nice, cause, he's a design student!
Sending the midi is working, the hardware and software are as good as done. Only one problem pops up.
The midi controller is used with abelton live. When playing a note, Abelton will automatically start playing(as if you clicked the main 'play' button). Other midi controllers over here don't trigger the software to start 'playing' the song. I've checked the format of the messages I send, and the messages send by an other midi controller. But they appear to be exacly the same.
Also some notes are not 'map-able'. They always play the note send by the midicontroller, and not the note they were mapped to in Abelton.
Does anyone has any idea? I would be very thankfull!
To my idea nothin else is sended as a note on, and than off. Abelton live starts it sequencer(as hitting the main 'play button') when midi is received from my board. Could it be a problem that i send my data on midi channel 1?
Could it be a problem that i send my data on midi channel 1?
No that code sends data on channel 2.
There is a difference between the channel defined in code and that used by musicians. In code channels are from 0 to 15 and for a musician they are from 1 to 16.
Sorry for the delay, well what i can suggest you is to try isolating the problem.
Is it arduino side or computer side? if it is computer side is it a protocol problem, a live problem?
You can send the midi to a real midi instrument (an hardware one) and see what happen so that you can test arduino side.
I suppose you are sending midi over arduino integrated usb, try to use an adapter (they are really cheap), connect arduino to a midi to usb adapter wiring the midi socket to arduino this way:
then read midi from the midi/usb interface.
Therefore there is a library that includes midi function you can find it here: