00001 00004 #ifndef ADC_H_ 00005 #define ADC_H_ 00006 00007 #include <avr/io.h> 00008 00009 #define ADC0 0x0 00010 #define ADC1 0x1 00011 #define ADC2 0x2 00012 #define ADC3 0x3 00013 00018 void ADC_Init(void); 00019 00024 unsigned short ADCReadChannel(unsigned char channel); 00025 00026 00027 #endif /* ADC_H_ */