This commit is contained in:
Tristan Krause 2019-04-01 15:16:47 +02:00
parent 949591a50d
commit b6d0b4c8f5
29 changed files with 0 additions and 0 deletions

15
firmware/adu.h Normal file
View file

@ -0,0 +1,15 @@
#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