Society of Robots - Robot Forum

Electronics => Electronics => Topic started by: Piyush Goel on February 07, 2012, 06:12:33 PM

Title: ADC in avr atmega 16
Post by: Piyush Goel on February 07, 2012, 06:12:33 PM
What is the use of the ADC port given on the microcontroller atmega 16?
how can it be used??
Title: Re: ADC in avr atmega 16
Post by: Soeren on February 07, 2012, 06:59:45 PM
Hi,

What is the use of the ADC port given on the microcontroller atmega 16?
The A/D-C (Analog to Digital Converter) is for converting analog voltages from eg. a sensor into a digital value.
With a 10 bit A/D-C ans a reference voltage of 5V, an analog voltage will be quntitized into steps of roughly 5mV (4.883mV).


how can it be used??
If you're after the exact code fror using it, take a look at the software board, Google something like "ATmega16 ADC code", or try this tutorial (http://www.avrfreaks.net/index.php?name=PNphpBB2&file=viewtopic&t=56429&highlight=adc).
Title: Re: ADC in avr atmega 16
Post by: Piyush Goel on February 08, 2012, 03:46:41 AM
Thanx a lot!!!!