arduino_midi_library
arduino_midi_library copied to clipboard
Request for example of multiplexer
Hi,
Could you made example code of the CD4051 multiplexer with 8 faders? because i use v-usb on atmega328p-pu ( Usnoobie project ) chip to build midi controller
Best regards,
The Arduino playground already has some examples about this:
https://playground.arduino.cc/Learning/4051/
The crux of it is:
- Select a fader by setting the three addressing pins
- Read its value using analogRead on a single ADC input connected to the CD4051
- Repeat
How this relates to your MIDI application is up to you.