We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
IndexProgramming Questions & HelpSound,  Music Libraries › How to send MIDI SYSEX with themidibus library
Page Index Toggle Pages: 1
How to send MIDI SYSEX with themidibus library? (Read 879 times)
How to send MIDI SYSEX with themidibus library?
Apr 13th, 2010, 1:00pm
 
Hi, just a question, How can I send midi SYSEX messages with themidibus library? Any of you have used this library to send this kind of messages? This is the correct way?


byte[] data = new byte[7];
     
     data[0] = (byte)0xF0;
     data[1] = (byte)0x00;
     data[2] = (byte)0x20;
     data[3] = (byte)0x5E;
     data[4] = (byte)0x55;
     data[5] = (byte)0x23;
     data[6] = (byte)0xF7;
     
     myBus.sendMessage(data);

I can't see any sysex messages in the MIDIMONITOR application.... Embarrassed

ciao

Simone
Page Index Toggle Pages: 1