at the moment I try to dive deeper into the code of MIDIbox. One thing that I’d like to know if it’s possible to implement a “simple” function, that allows to use a MIDI-Controller to control internal configuration-data f.e. delays of a keybed, break-is-make-function, etc. This would help to take control over the keybed “on the fly” without using the MIOS.
I’m not talking about MB_NG only. For me it’s more interesting, to have access to the parameters of MB_KB without the editor / computer. So I can not use any EVENTs and BANKs…
I’m not a coder… but for me it doesn’t sound that complicated to get control over some (not all) configuration parameters… :)
yes, I’d need continuous control KB does not work with a sd-card… all settings are saved in the EEPROM… no external files like NGC or NGR are used in KB.
I made a bit of process here. I discovered in the changelog of NG, that NG supports to control terminal commands from a DAW via SysEx. So if I create a syx-file and send this to the STM, it works f.e. this stream
What happens now is, that the terminal prints the command “set debug on” but that’s it… its just printing this text without activating this function. So I guess that the NG-firmware somehow filters out the sysex message. I think I need to send this command to “USB0” or “UART0” but those ports aren’t available afaik.
Does anybody have a hint on that? I looked into the code but for now I couldn’t find the function that I need to disable or to change.
I made a MIDI-loop going from OUT1 to IN1. This works great! So it seems that I can not address the parameters directly but need to build a midi loop to control those values from external controllers.