Nikolai Trushnikov / LM35
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     float volts;
00009     uint8_t ready;
00010     } LM35_t;
00011     extern LM35_t LM35_0;
00012 void LM35_start(float per);
00013 void LM35_stop(void);
00014 #endif