Not directly but you can make your own:bammer wrote: Is there any function in Lemur that converts this array of received sysex data from decimal to hex in real time?
Click on project(in the tree view), add a script, call it arraytohex(array) leave it to manual and paste the following code:
Code: Select all
decl a, b, c , i;
c = sizeof(array)*3-1;
a = fill(1,32,c);
for(i = 0; i < c; i++)
{
b = array[i] >> 4;
a[i*3] = b > 9 ? b+55 : b+48;
b = array[i] & 0xF;
a[i*3+1] = b > 9 ? b+55 : b+48;
}
return arraytostring(a);
Monitor.value = arraytohex(MIDI_ARGS);