| 12345678910111213141516171819 |
- #ifndef TSENSOR_H
- #define TSENSOR_H
- #include <stdint.h>
- #include "app/thermo/tsensor_common.h"
- typedef struct
- {
- bool ( * GetReady)();
- void ( * ResetTempAVG)();
- bool ( * ServeSensor)();
- tTSensorTemp ( * GetTempAVG)();
- void ( * SetSensorInterval)(uint32_t ms);
- }
- sThermoSensorHandle_t;
- extern const sThermoSensorHandle_t ThermoSensor;
- #endif
|