808

lm35.h

Committer:
vitlog
Date:
2020-06-22
Revision:
0:48636371d2d3
Child:
1:2c55cbb1e270

File content as of revision 0:48636371d2d3:

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