新聞中心

基于C8051F的18B20程序

作者: 時間:2016-12-01 來源:網(wǎng)絡(luò) 收藏
#include "C8051F410.h"

#include
#define uint unsigned int
#define uchar unsigned char

本文引用地址:http://m.butianyuan.cn/article/201612/324186.htm

sbit DQ = P2^4 ;

void delay(unsigned int i)
{
while(i--);
}
Init_DS18B20(void)
{
unsigned char x=0;
DQ = 1; //DQ復(fù)位
delay(176); //稍做延時
DQ = 0; //單片機(jī)將DQ拉低
delay(1760); //精確延時 大于 480us
DQ = 1; //拉高總線
delay(308);
x=DQ; //稍做延時后 如果x=0則初始化成功 x=1則初始化失敗
delay(440);
}

uchar 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(88);
}
return(dat);
}

WriteOneChar(unsigned char dat)
{
unsigned char i=0;
for (i=8; i>0; i--)
{
DQ = 0;
DQ = dat&0x01;
delay(110);
DQ = 1;
dat>>=1;
}
}

uint ReadTemperature(void) //溫度*10
{
uchar a=0;
uchar b=0;
uint temp=0;
uint t=0;
int temple; /*存放讀取的溫度值 將其除以16即為得到的值*/
Init_DS18B20();
WriteOneChar(0xCC); // 跳過讀序號列號的操作
WriteOneChar(0x44); // 啟動溫度轉(zhuǎn)換
Init_DS18B20();
WriteOneChar(0xCC); //跳過讀序號列號的操作
WriteOneChar(0xBE); //讀取溫度寄存器等(共可讀9個寄存器) 前兩個就是溫度
a=ReadOneChar(); //低8位
b=ReadOneChar(); //高8位
temp=b;
temp<<=8;
temp=temp|a;
temp&=0x07ff;
if( (b&0x08))
{
temple=~temp+1; //如果為負(fù)溫則去除其補(bǔ)碼
FWD=0; /*表示溫度為負(fù)數(shù)*/
}
else
{
temple=temp;
FWD=1; /*表示溫度為正數(shù)*/
}
t=temple*10/16;
//t = temp;
//t= t*625;
//t = t/1000;
return(t);
}



關(guān)鍵詞: C8051F18B20程

評論


技術(shù)專區(qū)

關(guān)閉