oh please don't get me wrong, I just need some tips on how best to proceed since I've never done anything like this before. I just need someone who can tell me where to start with a controller you don't know anything about.moss wrote: Tue Dec 08, 2020 11:17 amI am sorry but I don't have the device, so cannot help you with this.el_gato_loco wrote: Mon Dec 07, 2020 11:20 pm @moss
First of all a big respect for your work on the Bitwig extension "DrivenByMoss" what a brilliant work, I wish I was as talented as you !
Since a few days I'm trying to "program" my Midi-Controller "Nektar Aura Beat Composer" with Javascript - well, more bad than good . I have watched all your videos !
I first tried to decrypt the script of Nektar (encrypted and compressed code) when I understood roughly how the script works and how the controller talks to Bitwig I intercepted the sysex data and use them partly to initialize my controller, e.g. assignment of buttons and rotary knobs. Would you like to help me with this or could you give me some tips on how to do it best ? I already tried your Generic Flexi but unfortunately it only supports one output and one input.
I would be super grateful for the smallest hint
How can I edit sysex files to find out which hex values e.g. rotary knob 1 change the assignment ?
Is it better to work in Java because of better debugging possibilities or is it better to stay with javascript for the start to try things out quickly.
one problem I have for example is that several keys that are pressed "simultaneously" are not recognized
Code: Select all (#)
function onMidi0(status, data1, data2){
if(data2==127){
if (BTN_SHIFT==data1 && BTN_REC==data1){
host.showPopupNotification("Button shifted")
}
...
