1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/drivers/include/adc.h
2013-06-21 22:36:48 +02:00

21 lines
306 B
C

#ifndef ADC_H
#define ADC_H
#include <stdint.h>
/**
* @brief Initialize ADC.
*/
void adc_init(void);
/**
* @brief Read ADC value of selected channel.
*
* Valid channel numbers are from 0 to 2.
*
* @return ADC value of selected channel.
*/
uint16_t adc_read(uint8_t channel);
#endif /* ADC_H */