I am working on Arduino UNO. I am stuck at a point where I need to turn on the ADC pins on it. Please help me out, I am new to Arduino.
How to turn on all ADC's in Arduino
194 Views Asked by Aayush Kumar At
2
There are 2 best solutions below
0

Input analog pins default to being on and ready to be read. See http://playground.arduino.cc/CourseWare/AnalogInput for some general information and http://www.arduino.cc/en/Tutorial/Potentiometer for a specific example. Note that an Arduino Uno (using the Atmega328P chip) has six analog input pins, 0 to 5.
by default the A0-5 pins are HiZ input and ready to sample their A2D's. You need to simply sample them whenever you want.