-
-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Send CC Sequence when specific PC Command is received #475
Comments
It is not possible. Can you explain better your scenario? |
Ok. Here is my scenario: The problem now (and this has already been confirmed by BOSS and TC Electronic) is that the two devices use different implementations of the MIDI protocol. The BOSS control unit sends such MIDI sequences as "BULK commands", while TC Electronic expects individual commands, i.e. PC CH1 2, then CC CH1 103 0, then CC CH1 104 1 and finally a CC CH1 105 60, which also expects a slight delay of a few ms between the commands. BOSS, on the other hand, sends the entire sequence as a "BULK command" and therefore the TC Electronic only executes the first MIDI command (PC command) and ignores the CC commands. The proposed solution from BOSS/TC Electronic is to send individual commands and my idea would have been to configure a PedalinoMini so that it recognizes a PC CH20 1, for example, and then generates a sequence of individual PC and CC commands at the MIDI OUT with a few ms delay between the individual commands. I already have the circuit diagram:
Or do you have a better idea how a translator between PC and CC commands could be realized? Regards |
Why you are not connecting an external control port of BOSS ES-8 to PedalinoMini? |
Yes, that could possibly work. I would then have to configure the Boss ES-8 so that when I press a button it first sends the PC 1 2 command (to select the bank on the Plethora X3) and then the ES-8 would have to activate an external control port to tell the PedalinoMini that a further sequence with e.g. CC CH1 103 0 + CC CH1 104 1 + CC CH1 105 60 should be sent. However, as I no longer have any free external controls on the ES-8, I have now simply adapted the PedalinoMini.cpp and the whole thing works perfectly:
By sending i.e. following command the SEQUENCE nr 5 is sended to the Plethora:
Regards |
Hi,
Do I understand correctly that it is currently not possible to define an action that generates a defined CC Command Sequence at the MIDI OUT when a specific PC Command is received from the MIDI IN interface?
Best regards
Walter
The text was updated successfully, but these errors were encountered: