0
\$\begingroup\$

Resolution of an analog to digital conversion means the ratio between the maximum value of the measured signal to the number of data point that it can resolve(0-1023). So for Arduino(10-bit) my resolution is 5V/1024=4.88mV. Now I wonder if this value changes when I read voltage from multiple analog inputs. For example if I read analog values from 5 inputs, is this means that my resolution decreases to 5*5V/1024=24mV?

asked Dec 30, 2015 at 16:35
\$\endgroup\$

2 Answers 2

2
\$\begingroup\$

No, each input is multiplexed into a single 10 bit ADC. Regardless of how many analog inputs you read from, the resolution is 10 bits. In the future, carefully read documentation and all will become clear!

answered Dec 30, 2015 at 16:40
\$\endgroup\$
6
\$\begingroup\$

schematic

simulate this circuit – Schematic created using CircuitLab

Typical 8-channel micro ADC input. Channel selector logic not shown.

The ADC (analog-digital converter) is preceded by a multiplexed input selector. There is only one ADC in the chip.

  • All analog inputs share the one ADC.
  • Only one input pin can be connected to the ADC at any time.
  • Since all channels use the same ADC any comparison between the various inputs will share the same input offset errors and non-linearity. This will help minimise comparison errors.
  • Note that there is generally some input resistance and capacitance and the data sheet will normally recommend that you select a channel, wait long enough for the capacitor value to stabilise (5 x RC would give> 99%) and then trigger the ADC. This is one of the factors which limits the maximum ADC scan rate.
  • Since you can't sample two inputs simultaneously it is not possible to compare two inputs at exactly the same instant. There will be a small delay between the readings.
answered Dec 30, 2015 at 17:59
\$\endgroup\$

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.