Reading two inputs

I want to put two potentiometers on a breadboard, but can the arduino take two analogue readings at the same time?

Two pots to two analog inputs?

If yes then you can read one analog input then read the other one. Not exactly ‘at the same time’, but almost.

1 Like

Yeah, that’s what I meant. Thanks

  • If you have an Arduino UNO, there are 6 analog inputs A0-A5.
    Takes about 100us per read.
1 Like

OK, done it. It works a treat. Thanks everyone