Files
a2bfc/ow-temp.h

17 lines
297 B
C

#ifndef OW_TEMP_H
#define OW_TEMP_H
#include "ow.h"
// 1-Wire temperature sensor functions
short ow_temp_read(unsigned char* devid, unsigned char format);
// 1-Wire temperature sensor constants
#define OW_TEMP_RAW 0
#define OW_TEMP_FAHRENHEIT 1
#define OW_TEMP_CELSIUS 2
#endif // OW_TEMP_H