Page 1 of 1

send Sysex

Posted: 08 Sep 2026, 20:46
by cmodica
Hi.
I can’t seem to work out how to send a Sysex message like this:
F0 00 02 23 01 08 00 36 7F 15 01 F7
via Usine?
Thank you very much.

Re: send Sysex

Posted: 09 Sep 2026, 20:29
by oli_lab
HI !

you'll have to convert your code in decimal and drop F0 and F7 :
F0 00 02 23 01 08 00 36 7F 15 01 F7
becomes
0;2;35;1;8;0;54;127;21;1

you'll have to send a dummy code to have the data change at the sysex input to make sure that the code is sent.
Capture d'écran 2026-09-09 201133.png

Re: send Sysex

Posted: 11 Sep 2026, 07:56
by cmodica
Thank you.
I hadn’t realised I needed to convert it to decimal.
All that’s left to do now is to patch a hexadecimal-to-decimal converter...