Background
On the one hand, I have an Arduino Micro powered over USB.
On the other hand, I have an analog circuit with a dedicated voltage regulator, powered by a "wall-wart." This regulator supplies 5V to a number of ratiometric sensors (i.e. output depends on supply voltage). Maximum sensor output will be around 4.8V. The total current drawn by this circuit is too high for the arduino's onboard 5V source to handle, hence the dedicated power supply.
To start with, the only connection between the arduino and the externally powered circuit is the ground.
Goal
My goal is to measure the output of the ratiometric sensors using the arduino.
Accuracy and stability/reproducibility are important.
Questions
I am not sure what the best approach would be, in terms, of reference voltage:
- Should I connect the arduino's AREF pin to the external 5V supply (and set analogReference to EXTERNAL), or should I just stick to the default reference voltage (which is the approx. 5V from USB)?
The first option would make most sense to me, because the sensors are supplied by that same external 5V supply. However, after reading the arduino docs, and quite a number of posts on this forum warning against using the AREF pin, I got all scared and confused (e.g. 1, 2, 3).
- If I would use AREF, I guess it would be safest to use a resistor in between AREF and the external 5V, as suggested in the analogReference docs. I read somewhere that the suggested 5k represents a lower limit for the resistance. Is that true, or could I also use e.g. 1k and still have good accuracy?
Thanks for your help.