Robstaaaaa | Answers

Hi John, could you please give more details on the seld_send_midi syntax? I try to send a custom midi command to my Minilab Mk2 to change its preset. The midi command is "F0 00 20 6B 7F 42 05 08 F7"...

View Question
0 Votes edited answer

Same here, just posted in another thread here in the forum, but as it seems related I also update it here in this thread: I have a similar midi command here and get the same syntax errors. Wrapping it...

View Question
0 Votes edited answer

Found a cumbersome solution, but it works: Just translate each individual element from HEX to DEC and it will work. In my case what I want to send is: (F0,00,20,6B,7F,42,05,01,F7) Instead I now send...

View Question
0 Votes edited answer

Found a cumbersome solution, but it works: Just translate each individual element from HEX to DEC and it will work. In my case what I want to send is: (F0,00,20,6B,7F,42,05,01,F7) Instead I now send...

View Question
0 Votes edited answer

@Bernwadub: Then try this instead: self._send_midi((176 94 127)) 176 is the DECIMAL version of 0xB0 (HEX).x

View Question
0 Votes edited answer

Try this instead (added commas between the elements): self._send_midi((176,94,127))

View Question
0 Votes edited answer

Hi fatherservo, have you advanced on this topic and potentially a max for live plugin that you are going to share? Finding this really interesting, as I am currently preloading plenty of instruments using...

View Question
0 Votes edited answer

Hi fatherservo, thank you for sharing! I tried it and it works! An issue I found is that upper case letters do not work, but as searching is not case sensitive, using lower case letters fixes this

View Question
0 Votes edited answer