You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
248 B
C

/*
* adc.h
*
* Created: 09/12/2021 16:31:06
* Author: n0x
*/
#include <avr/io.h>
#include <avr/interrupt.h>
#ifndef ADC_H_
#define ADC_H_
void adc_init(void);
uint16_t adc_get_poti(void);
uint16_t adc_get_LM35(void);
#endif /* ADC_H_ */