git-svn-id: https://svn.salfter.gotdns.org/svn/a2bfc/trunk@82 1b90f75b-8b96-4784-87c0-14078182fce6
17 lines
297 B
C
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
|