WeatherStation/LM335.h

13 lines
195 B
C
Raw Permalink Normal View History

2023-12-03 13:37:53 +01:00
#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