00001 00006 #ifndef ADC_H_ 00007 #define ADC_H_ 00008 00009 #include <avr/io.h> 00010 00011 #define ADC0 0x0 00012 #define ADC1 0x1 00013 #define ADC2 0x2 00014 #define ADC3 0x3 00015 00022 void ADC_Init(void); 00023 00032 unsigned short ADCReadChannel(unsigned char channel); 00033 00034 00035 #endif /* ADC_H_ */