DS18B20

DS18B20  

2008-09-26 12:31:09|  分類: 單片機 |  標籤: |字號 訂閱ide

 

#include<reg52.h>函數

sbit DQ =P2^2;   //定義通訊端口spa

//延時函數blog

void delay(unsigned int i)
{
 while(i--);
}get

//初始化函數
Init_DS18B20(void)
{
 unsigned char x=0;
 DQ = 1;    //DQ復位
 delay(8);  //稍作延時
 DQ = 0;    //單片機將DQ拉低
 delay(80); //精確延時 大於 480us
 DQ = 1;    //拉高總線
 delay(14);
 x=DQ;      //稍作延時後 若是x=0則初始化成功 x=1則初始化失敗
 delay(20);
}it

//讀一個字節
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(4);
 }
 return(dat);
}class

//寫一個字節
WriteOneChar(unsigned char dat)
{
 unsigned char i=0;
 for (i=8; i>0; i--)
 {
  DQ = 0;
  DQ = dat&0x01;
  delay(5);
  DQ = 1;
  dat>>=1;
 }
//delay(4);
}select

//讀取溫度
ReadTemperature(void)
{
unsigned char a=0;
unsigned char b=0;
unsigned int t=0;
float tt=0;
Init_DS18B20();
WriteOneChar(0xCC); // 跳過讀序號列號的操做
WriteOneChar(0x44); // 啓動溫度轉換
Init_DS18B20();
WriteOneChar(0xCC); //跳過讀序號列號的操做
WriteOneChar(0xBE); //讀取溫度寄存器等(共可讀9個寄存器) 前兩個就是溫度
a=ReadOneChar();
b=ReadOneChar();
t=b;
t<<=8;
t=t|a;
tt=t*0.0625;
//t= tt*10+0.5; //放大10倍輸出並四捨五入---此行沒用
return(t);
}float

main()
{
 unsigned char i=0;
  while(1)
  {
   i=ReadTemperature();//讀溫度
  }
}
 通信

相關文章
相關標籤/搜索