|
Post by gurbz on May 19, 2018 11:19:53 GMT
Hi, perhaps a basic question but here goes:
I want to use the ctl Pedal of my Roland vg-88 as a on/off switch, it sends value 127,0 to my midi controllable Boss Katana amp
i created this rule for CC mapping #11 to # 17 but I can’t get it right to switching on when pressing the pedal and switching it off when pressing the pedal:
BX 0B 00 = XX 10 7F
and then I’m lost, tried several settings but no solution till now
please help!
|
|
nic
Soapbox Supremo  
Troublemaker
Press any key to continue
Posts: 2,011
|
Post by nic on May 19, 2018 11:28:52 GMT
Hi gurbz, This is what your rule does: BX 0B 00 = XX 10 7F - map CC 11, any channel, OFF to CC16 ON Try this instead (map CC 11 to CC17) # map CC11 to 17 BX 0B = XX 11Regards, Nic.
|
|
|
Post by gurbz on May 19, 2018 12:08:25 GMT
Thanks for the quick reply!
Apart from the right CC setting the amp setting switches on when I press the pedal and off when I ‘m releasing the pedal.
I’ looking for:
press —> release —> ON, press —> release —> OFF
How do I program that?
|
|
|
Post by gurbz on May 19, 2018 12:09:28 GMT
When pressing it sends 127 When releasing it sends 0
|
|
|
Post by gurbz on May 19, 2018 15:51:12 GMT
This is probably a momentary switch that I ‘d like to use /program as a latch switch. Is this possible ?
|
|
nic
Soapbox Supremo  
Troublemaker
Press any key to continue
Posts: 2,011
|
Post by nic on May 19, 2018 16:26:03 GMT
Hi gurbz , Yes, we can turn the momentary switch to latched, but we have to use SB II language: IF LOAD ASS K0 = 0B 11 ASS L0 = 0 END
IF M0 >= B0 IF M0 <= BF IF M1 == K0 7F IF L0 == 0 ASS L1 = 7F ASS L0 = 1 END IF L0 == 1 ASS L1 = 00 ASS L0 = 0 END SND M0 K1 L1 XX = XX +B END END ENDI typed in the above manually - I do not know if it compiles or the logic is correct; that's for you to do! :-) Regards, Nic.
|
|
|
Post by gurbz on May 19, 2018 17:54:21 GMT
Wow! I wouldn’t have figured that one out on my own! Not so basic question after alI guess. This won’t work in midibridge so I ‘ll try it with midifire.
|
|
nic
Soapbox Supremo  
Troublemaker
Press any key to continue
Posts: 2,011
|
Post by nic on May 19, 2018 18:04:34 GMT
Yes, sorry, MidiFire only as we need variables to remember whether we are latched on or off. In MidiBridge it can be done by switching scenes each time the cc is seen to achieve the toggle, but this was always a bit of a workaround and tricky to setup and explain.
Regards, Nic.
|
|