1

I'm pretty new to hardware stuff. I have a basic idea to build a hardware controller for some proprietary software. I would need to read about 60 analog faders/potentiometers and 30 buttons. Also I need to drive about 40 LEds. I have Arduino or Raspberry Pi at hand. Up to 60ms delay from mechanical movement to registered value would be ok. I found some digital potentiometer accessible via I2C but at a hefty price (14$ per piece - I'd need about 60 of them)

Nick Alexeev
  • 37,739
  • 17
  • 97
  • 230
m_c
  • 15
  • 2

1 Answers1

4

Look for multi-channel ADCs to read your pots, chips with 16 or 32 channels are not unheard of. Or use analog muxes as Colin suggested, here's a DIY friendly solution if you're planning to solder by hand.

For buttons and LEDs, you can use multiplexing or shift registers, as described e.g. here.

Dmitry Grigoryev
  • 25,576
  • 5
  • 45
  • 106
  • 2
    Thanks Dmitry! That is exactly the stuff, I was looking for. It's always hard to create a clear question without knowing the exact terminology, but that lead me in the right direction. – m_c Jun 08 '17 at 07:35
  • @m_c Good luck with your project! – Dmitry Grigoryev Jun 08 '17 at 07:39