Hello,
so this is my first post here and also my first time trying to programm an object in axoloti. I am trying to programm the axoloti as a controller for my Roland Alpha Juno 1 by sending a sysex message via MIDI. I use this two lines of code from the forum to send the message:
uint8_t sysexArray[10] = {0xF0, 0x41, 0x36, 0x00, 0x23, 0x20, 0x01, 0x10, 0x00, 0xF7};
sdWrite(&SDMIDI, sysexArray, 10);
This works just fine, but I want to be able to edit the parameters in real time using an encoder. So I need to convert the output of the encoder into hexadecimal, but as my coding skills are a little bit rusted I don't seem to find a good solution for this problem. Maybe someone here has some idea how to solve this problem?