808
Dependents: Chromatograph_Mobile
lm35.h
- Committer:
- nikmaos
- Date:
- 2020-08-08
- Revision:
- 1:2c55cbb1e270
- Parent:
- 0:48636371d2d3
File content as of revision 1:2c55cbb1e270:
#ifndef _LM35_H /* Guard against multiple inclusion */ #define _LM35_H #include "PerifConfig.h" #define KF 1000 typedef struct { //фильтрованное значение температуры float temp; float volts; uint8_t ready; } LM35_t; extern LM35_t LM35_0; void LM35_start(float per); void LM35_stop(void); #endif