新聞中心

EEPW首頁 > 嵌入式系統(tǒng) > 設(shè)計(jì)應(yīng)用 > 51單片機(jī)18B20溫度與串口實(shí)驗(yàn)

51單片機(jī)18B20溫度與串口實(shí)驗(yàn)

作者: 時(shí)間:2016-11-30 來源:網(wǎng)絡(luò) 收藏
void send_number(uchar *p,uint k) //通過串口發(fā)送溫度值函數(shù)
{
while(*p)
{
send_byte(*p);
p++;
}
send_byte( );
send_byte( );
send_byte(k/100+48);
send_byte(k%100/10+48);
send_byte(.);
send_byte(k%10+48);
send_byte();
send_byte();
}
/*
void key8() //按鍵發(fā)送函數(shù)
{
static uchar i,j;
if(k8==0)
{
if(i==0)
{
j++;
if(j>3)
{
i=1;j=0;
send_number("the temperature is ",temp);
}
}
}
else
{
i=0;
j=0;
}
}
*/
void main()
{
serial_init();//串口初始化
send_byte(12); //超級終端清屏
send_str("serial_init is ok "); //初始化好壞標(biāo)示字符串
str_init(); //串口中斷初始化
send_str("str_init is ok ");
while(1)
{
count++;
temp=read_18b20();
show_temp(temp);
if(count>500) //約沒3秒發(fā)送一次溫度值給串口
{
send_number("The temperature is ",temp);
count=0;
}
else
{
}
}
}
//-----------------------18B20----庫函數(shù)----------------
sbit dq=P3^4; //18B20數(shù)據(jù)口
void send_1() //發(fā)送1位1函數(shù)
{
dq=0;
dq=0;
dq=0;
dq=1;
delay(2);
}
void send_0()//發(fā)送1位0函數(shù)
{
dq=0;
delay(2);
dq=1;
}
void Tsend_byte(uchar dat)
{
uchar i;
for(i=0;i<8;i++)
{
if(dat&0x01)send_1();
else send_0();
dat>>=1;
}
}
uchar read_byte() //18B20讀取數(shù)據(jù)函數(shù)
{
uchar i,byte;
for(i=0;i<8;i++)
{
dq=0;
dq=0;
dq=1;
dq=1;
byte>>=1;
if(dq==1)
{
byte=byte+0x80; //如果采樣為1則最高位為1
}
delay(3);
}
return byte;
}
uchar start_18b20()//啟動(dòng)18b20實(shí)質(zhì)上判斷有誤應(yīng)答信號
{
static uint cnt;
dq=0;
delay(62);
dq=1;
while(dq==1) //等待拉低
{
cnt++;
if(cnt>50000)
{
cnt=0;
return 1;//等待超時(shí)判斷說明器件壞了
}
}
while(dq==0)
{
cnt++;
if(cnt>50000)
{
cnt=0;
return 1;
}
}
return 0; //正常啟動(dòng)返回0值
}
uint read_18b20()//讀取溫度值函數(shù)
{
uchar TH,TL;
uint temp;
start_18b20();
Tsend_byte(0xcc);
Tsend_byte(0x44);
;;
start_18b20();
Tsend_byte(0xcc);
Tsend_byte(0xbe);
TL=read_byte();
TH=read_byte();
temp=TH;
temp<<=8;
temp=temp+TL;
/*if(temp&0xf800) //如果最高位為1則是溫度為負(fù)值 .可以設(shè)置溫度負(fù)值符號
{
temp=~temp+1;
}
*/
temp=temp*0.0625*10; //顯示小數(shù)部分
return temp;
}
上一頁 1 2 下一頁

評論


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

關(guān)閉