Vitaliy Loginov / LM35

Dependents:   Chromatograph_Mobile

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers lm35.h Source File

lm35.h

00001 #ifndef _LM35_H    /* Guard against multiple inclusion */
00002 #define _LM35_H
00003 #include "PerifConfig.h"
00004 #define KF 1000
00005 typedef struct {
00006     //фильтрованное значение температуры
00007     float temp;
00008     uint8_t ready;
00009     } LM35_t;
00010     extern LM35_t LM35_0;
00011 void LM35_start(float per);
00012 void LM35_stop(void);
00013 #endif