I was able to use midi filters to convert midi cc to specific program number change like sound patch in my external synth. I am now trying to set the midi filter to convert midi cc to increase or decrease program number by 1. For example, I would like to go up / down on VL70m synth patch by moving up/down the thumb controller in WX5 . I would appreciate any advice.
(I have set my external sound interface which sends midi cc to VL70m.)
I think you need a script to convert your midi cc messages into PgmUp oder PgmDn messages.
You could use the freely available ReaJS VST Plugin from Cockos to do that (https://www.reaper.fm/reaplugs/#tour).
You can do this with Cantabile but would need to use bindings and system exclusive messages to do it. For your Yamaha module you would need to set the Device Number using the instructions on page 32 of the VL70M manual. You would set it to device 0 for the sys-ex code examples below
value -
F0H, 43H, 10H, 57H, 0AH, 00H, 0BH, 01H, 00H, F7H
value +
F0H, 43H, 10H, 57H, 0AH, 00H, 0EH, 01H, 00H, F7H
the background reading for the VL70m sys-ex messages is on pg 29 and in the table at the bottom of pg 43 of the VL70M List book.
Cantabile allows sending of MIDI sys-ex in the bindings feature available on solo and performer versions.
Hi, Dave & Harry
Thanks for kind reply. I am a beginner on this. I tried to add the sys-ex message you suggested on the binding section. I kept getting error message. Can you write me what exactly I should put on the sys-ex data section ?
I tried these -
F0H, 43H, 10H, 57H, 0AH, 00H, 0EH, 01H, 00H, F7H - not working
Did you set the VL70M system exclusive device number to Device 0? (this must be done on the module and how to is in the owners manual) If not what device number are you using?
Thank you again for your help. VL70m only allow me to choose device number between 1-16 ( not 0). I could pick “1”, then what would be the sys-ex message? Best,
Thank you so much. I now learned how to set this up. For some reason, however, my VL70-m froze when the cantabile sent the sys-ex data. I will review the manual and try different settings.
Min
Yamaha device numbers 1-16 are 0x0-0xF in sysex messages. So device number 1 becomes 0x0 in sysex.
I think, because the commands emulate key presses, you have to send 2 messages, one for key down and one for key up. if you omit the key up message, your synth will not react to any other key presses.
So the message for value+ (is this right or is it part+ ?)should be F043 10 57 0A000E01 F7 followed by a F043 10 57 0A000E00 F7
and for value- it should be F043 10 57 0A000B01 F7 followed by a F043 10 57 0A000B00 F7
to copy x"F04310570A000E01F7" followed by a x"F04310570A000E00F7" -> value+
and x"F04310570A000B01F7" followed by a x"F04310570A000B00F7" -> value-
I hope Cantabile is able to send to messages in a binding.
Otherwise you have to setup 4 bindings for 4 controller values
Yes you are right with the Device 1 being 0 Hex so F043 10
On the switches you are right there should be a 1 byte followed by a zero byte but I thought you could put them in sequence in the same expression because the data area is described as ddH,~,ddH in the chart instructions so I assume the whole expression for value + to be
F04310570A0000E 01 00 F7
and value -
F04310570A0000B 01 00 F7
if not you can have both expressions in the same sys-ex dialog box one after the other for your switch, you shouldn’t need 4 bindings just 2 from what I see.
I thought value + and minus were what you wanted, it advances up the patch list and back down the patch list. If you wanted to change the part value you only need to change the lower address to 09 and 0C for - and +.
Yes I checked that you can send multiple sysex commands in one Binding, I tested one sysex command per line and my midiox monitor showed them properly up.
Finally x"F04311570A000E01F7" works(it increases the program number in my VL70-m synth). I had to chose the binding event as controller ( button).
I am very excited about endless mid capability of Cantabile!
Thank you so much for all your help. Best,