WeatherStation/LM335.h
2023-12-03 13:37:53 +01:00

13 lines
No EOL
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