I need one more digital output pin than is available on the Uno, so I'm looking at using one of the analog pins in digital mode. This is simple enough, but I read the caution below:
The Atmega datasheet also cautions against switching analog pins in close temporal proximity to making A/D readings (analogRead) on other analog pins. This can cause electrical noise and introduce jitter in the analog system. It may be desirable, after manipulating analog pins (in digital mode), to add a short delay before using analogRead() to read other analog pins.
I still need to get analog input readings on two other pins, so my question is, what constitutes "close temporal proximity" and how much of a delay after switching the Analog pin on or off do I need to leave? I'd like to minimize the delay, but still need to get reliable readings on the input pins.
Thanks.