溫度傳感器DS18B20 89C51單片機C語言程序
#include #define ucharunsignedchar /*宏定義 字符型數(shù)據(jù) 整型數(shù)據(jù) */ /*****延時子程序*****/ /*****初始化DS18B20*****/ /*****讀一個字節(jié)*****/ /*****寫一個字節(jié)*****/ /*****讀取溫度*****/ unsigned char a=0; void main() P0 = 0x80;
#define uint unsigned int
uint DD;
sbit DQ=P2^2; //定義DS18B20總線I/O
unsigned int temputer;
char Co
0x7d, 0x07, 0x7f, 0x6f};
uchar co
void Delay_DS18B20(int num)
{
while(num--) ;
}
void delay(unsigned int time) //延時子程序 入口參數(shù) time
{
unsigned int n;
n=0;
while(n{n++;}
return;
}
void Init_DS18B20(void)
{
unsigned char x=0;
DQ = 1; //DQ復(fù)位
Delay_DS18B20(2); //稍做延時
DQ = 0; //單片機將DQ拉低
Delay_DS18B20(80); //精確延時,大于480us
DQ = 1; //拉高總線
Delay_DS18B20(14);
x = DQ; //稍做延時后,如果x=0則初始化成功,x=1則初始化失敗
Delay_DS18B20(20);
}
unsigned char ReadOneChar(void)
{
unsigned char i=0;
unsigned char dat = 0;
for (i=8;i>0;i--)
{
DQ = 0; // 給脈沖信號
dat>>=1;
DQ = 1; // 給脈沖信號
if(DQ)
dat|=0x80;
Delay_DS18B20(8);
}
return(dat);
}
void WriteOneChar(unsigned char dat)
{
unsigned char i=0;
for (i=8; i>0; i--)
{
DQ = 0;
DQ = dat&0x01;
Delay_DS18B20(10);
DQ = 1;
dat>>=1;
}
}
unsigned int ReadTemperature(void)
{
unsigned char b=0;
unsigned int t=0;
float tt=0;
Init_DS18B20();
// Init_DS18B20();
WriteOneChar(0xCC); //跳過讀序號列號的操作
WriteOneChar(0x44); //啟動溫度轉(zhuǎn)換
Delay_DS18B20(20);
Init_DS18B20();
WriteOneChar(0xCC); //跳過讀序號列號的操作
WriteOneChar(0xBE); //讀取溫度寄存器
a=ReadOneChar(); //讀低8位
b=ReadOneChar(); //讀高8位
t=b;
t<<=8;
t=t|a;
tt=t*0.0625;
t= tt*10+0.5; //放大10倍輸出并四舍五入
return(t);
}
{
while(1)
{
temputer=ReadTemperature();//temputer 是3位數(shù)的 是溫度擴大了10倍
P0 = Co
P1 = C[1];
delay(100);
DD=temputer/100;
temputer=temputer-DD*100;
P0 = Co
P1 = C[2];
delay(100);
P1 = C[3];
delay(100);
P0 = Co
P1 = C[4];
delay(10);
}
}