Mux and sysex #1011
klausnielsen
started this conversation in
General
Mux and sysex
#1011
Replies: 1 comment 3 replies
-
You could create an array of CD74HC4067 mux { ... };
FilteredAnalog<7> potentiometers[] {
mux.pin(0), mux.pin(1), // ...
}; Some examples that could be useful: |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi everyone,
I'm working on a midi controller that will send out sysex to an old 80's synth. Using an example Pieter posted on Arduino Forum I can very easily get a single 10K potentiometer (hooked up to +5v, A0, GND) to send sysex in realtime (see below).
But since I will be needing a LOT of pots, I'm thinking I need to use multiplexers similar to the example on CCPotentiometers given in section 4 of the 'Getting Started' documentation. I've searched high an low for examples on how to do this, but without luck. How would you go about muxing this sysex sketch?
Hope someone has some ideas
Cheers
Beta Was this translation helpful? Give feedback.
All reactions