25 lines
385 B
C
25 lines
385 B
C
#ifndef __TEMP_H
|
|
#define __TEMP_H
|
|
|
|
#include <8052.h>
|
|
|
|
#ifndef uchar
|
|
#define uchar unsigned char
|
|
#endif
|
|
|
|
#ifndef uint
|
|
#define uint unsigned int
|
|
#endif
|
|
|
|
#define DSPORT P3_7
|
|
|
|
void Delay1ms(uint y);
|
|
uchar Ds18b20Init(void);
|
|
void Ds18b20WriteByte(uchar com);
|
|
uchar Ds18b20ReadByte(void);
|
|
void Ds18b20ChangTemp(void);
|
|
void Ds18b20ReadTempCom(void);
|
|
int Ds18b20ReadTemp(void);
|
|
|
|
#endif
|