您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
19 行
323 B
19 行
323 B
/**
|
|
* Reading onewire sensors
|
|
*/
|
|
|
|
#ifndef ONEWIRES_H
|
|
#define ONEWIRES_H
|
|
|
|
#include <stdint.h>
|
|
#include "recup_types.h"
|
|
|
|
void onewires_setup();
|
|
|
|
int read_onewires(cels_t *a, cels_t *b);
|
|
|
|
extern volatile cels_t gTempSensors[2];
|
|
extern volatile bool tempSensorsOk;
|
|
extern volatile uint16_t gTempsSerial;
|
|
|
|
#endif //ONEWIRES_H
|
|
|