WeatherStation/LM335.h
2025-02-05 14:14:14 +01:00

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