I'm trying to send a midi signal from my c# app to a track in Ableton Live.
I've tried both the Bass.net and midi-dot-net both with the same effect: No events arriving in Ableton. (I've got loopMidi installed and thats where I send my signals to.)
Strangely enough when I target my midi-keyboard it plays the stanard piano sound..
My code is 1-1 copy of the examples on the sites:
OutputDevice outputDevice = OutputDevice.InstalledDevices[0];
outputDevice.Open();
outputDevice.SendNoteOn(Channel.Channel1, Pitch.C4, 80); // Middle C, velocity 80
outputDevice.SendPitchBend(Channel.Channel1, 7000); // 8192 is centered, so 7000 is bent down
As I'm still quite to new to midi I think I'm still misunderstanding some basics here.. Can anybody see what I'm doing wrong?