16 lines
196 B
C++
16 lines
196 B
C++
#ifndef ADC_H
|
|
#define ADC_H
|
|
|
|
#include <avr/io.h>
|
|
#include <util/delay.h>
|
|
#include <stdint.h>
|
|
|
|
class ADU
|
|
{
|
|
public:
|
|
void init(void);
|
|
uint16_t getValue(uint8_t);
|
|
};
|
|
|
|
#endif // ADC_H
|