TTK4155 Ping-pong project
adc_driver.h
Go to the documentation of this file.
1 
4 #ifndef ADC_DRIVER_H_
5 #define ADC_DRIVER_H_
6 
7 
8 int adc_init(void);
9 uint8_t adc_read(int ch);
10 
11 
12 
13 #endif /* ADC_DRIVER_H_ */
int adc_init(void)
brief Function to initialize adc.
Definition: adc_driver.c:13
uint8_t adc_read(int ch)
Read adc value.
Definition: adc_driver.c:25