13 lines
195 B
C
13 lines
195 B
C
|
#include <avr/io.h>
|
||
|
#include <util/delay.h>
|
||
|
|
||
|
#ifndef LM335_H_
|
||
|
#define LM335_H_
|
||
|
|
||
|
#define LM335_PIN PA0
|
||
|
|
||
|
void ADC_Init();
|
||
|
uint16_t ADC_Read(uint8_t channel);
|
||
|
float LM335_ReadTemperature();
|
||
|
|
||
|
#endif
|