You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would it be possible to add a PC (Program Change) to CC plugin? That way I can use my Boss FC-50 with software that uses CC to trigger parameters. Thanks!
Jeremy
The text was updated successfully, but these errors were encountered:
Sounds like a good idea, I wasn't able to think of a good use case for this that can be configured with simple (automatable) control parameters, though.
Program-change has 1 data byte. What do you intend to map this to? CC parameter or value?
Meanwhile: A bit more complex, but that should not be an issue for you who knows how to deal with text config files: https://github.com/x42/midimap.lv2
# convert a program-change, any patch-number to CC on the same midi-channel
# map patch-number to CC-parameter, use value 127
PGM ANY | 0xb0/0x0f SAME 0x7f
...or an explicit list:
# program 1 -> send CC parameter 64 value 127 (same midi channel)
PGM 1 | 0xb0/0x0f 64 127
# program 2 -> send CC parameter 64 value 0 (same midi channel)
PGM 2 | 0xb0/0x0f 64 0
Hi Robin,
Would it be possible to add a PC (Program Change) to CC plugin? That way I can use my Boss FC-50 with software that uses CC to trigger parameters. Thanks!
Jeremy
The text was updated successfully, but these errors were encountered: