Some of parameters of this gear could be tweaked via simple MIDI CC, some via SysEx. SysEx Dump data to device works just fine (here is the example)
Code: Select all
midiout(0,{0xF0, 0x3F, 0x00, 0x25, 0x44, 0x01, 0x01, 0x04,round(Pan.x*127),0xF7});
Here is the manual of 309
http://cl.ly/U13F/QUASIMIDI_309.pdf
At 23 page you can see sequence to request data from device. Here it is.
So I've made a button with a script executed on "x" change which should grab the KICK sound number, it is just one byte length
Code: Select all
midiout(0,{0xF0, 0x3F, 0x00, 0x25, 0x52, 0x01, 0x01, 0x01, 0x00, 0x00, 0x01, 0xF7});
I have an object with custom MIDI with ON MIDI execution that grabs all incoming events, so if I dump from 309 manually - everything works just fine. Could you help me to resolve the problem?