|
I'm not sure there is a "simple" way to do it - two is easy, three is hard.
Am I right you want to be able to switch any pedal in any order?
You could easily use two 4PDT switches to get (with LED indication):
Switch 1 (switching between A and B).
A>>B>C
B>>A>C
and
Switch 2 (switching between B and C).
A>B>>C
A>C>>B
It may be possible to use another switch to put C first in the chain, but it's making my head explode trying to figure it out!
Alternatively, you could go the programmeable route, and use a PIC or Arduino controller to get all possible order combinations. Then you can use just one 6-way rotary switch for order switching.
This can give you:
A>B>C
A>C>B
B>A>C
B>C>A
C>A>B
C>B>A
This should be a piece of cake to implement - but only if you know how to programme!
|