Call out to the MIDI experts...

  • So for those familiar with Liine's Lemur app, there is a very basic Kemper template. It allows you to turn on/off stomps, adjust eq/gain, turn on tuner, adjust delay/reverb and send program changes. Those are all basic CC/PC commands. I have added on/off for amp, eq and cabinet which are all NRPN calls. I am now venturing into pulling data from the Kemper such as the rig name. I am just breaking ground here so my understanding is that the SYSEX message F0 00 20 33 02 7f 43 00 00 01 F7 gets the rig name string, per the Kemper MIDI doc. I am using the midiout(tartget, message array{}) command (specific to Liine's Lemur app) and setting a variable equal to the return:
    rigmsg = midiout(0,{0xF0,0x00,0x20,0x33,0x02,0x7F,0x43,0x00,0x00,0x01,0xF7}); however, is doesn't return anything and I have no idea if I'm even doing this right.


    Any and all assistance would be greatly appreciated!