源代码:
#include"reg51.h"#define uchar unsigned char
#define uint unsigned intsbit DQ=P3^6; //温度数据口
sbit wx1=P1^0; //位选1
sbit wx2=P1^1; //位选2
sbit wx3=P1^2; //位选3
sbit wx4=P1^3; //位选4
sbit start=P3^0;
sbit increase=P3^1;
sbit decrease=P3^2;
sbit motor=P1^5;
uchar wflag;
uchar stopflag;
uchar count=26;unsigned int temp, temp1,temp2, xs;uchar code table[]={0xc0,0xf9,0xa4,0xb0,0x99, //共阳数码管0x92,0x82,0xf8,0x80,0x90,0x88,0x83,0xc6};/******延时程序*******/
void delay1(unsigned int m){unsigned int i,j;for(i=m;i>0;i--)for(j=50;j>0;j--);}void delay(unsigned int m) //温度延时程序{while(m--);}void Init_DS18B20()
{
unsigned char x=0;
DQ = 1; //DQ复位 ds18b20通信端口
delay(8); //稍做延时
DQ = 0; //单片机将DQ拉低
delay(80); //精确延时 大于 480us
DQ = 1; //拉高总线
delay(4);
x=DQ; //稍做延时后 如果x=0则初始化成功 x=1则初始化失败
delay(20);
}/* ds18b20读一个字节*/
uchar ReadOneChar()
{
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);
}//ds18b20写一个字节
void WriteOneChar(unsigned char dat)
{unsigned char i=0;for (i=8; i>0; i--){DQ = 0; //从高电平拉至低电平时,写周期的开始DQ = dat&0x01; //数据的最低位先写入delay(5); //60us到120us延时DQ = 1; dat>>=1; //从最低位到最高位传入
}
}// 读取ds18b20当前温度
void ReadTemperature(){unsigned char a=0;unsigned b=0;unsigned t=0;Init_DS18B20();WriteOneChar(0xCC); // 跳过读序号列号的操作/WriteOneChar(0x44); // 启动温度转换 delay(5); // this message is wery importantInit_DS18B20();WriteOneChar(0xCC); //跳过读序号列号的操作WriteOneChar(0xBE); //读取温度寄存器等(共可读9个寄存器) 前两个就是温度/ delay(5);a=ReadOneChar(); //读取温度值低位 /b=ReadOneChar(); //读取温度值高位 / temp1=b<<4; //高8位中后三位数的值 temp1+=(a&0xf0)>>4; //低8位中的高4位值加上高8位中后三位数的值 temp1室温整数值temp2=a&0x0f; //小数的值temp=((b*256+a)>>4); //当前采集温度值除16得 实际温度值 zhenshu xs=temp2*0.0625*10; //小数位,若为0.5则算为5来显示 xs小数 xiaoshu}void tempreature_display(){wx1=1;P2=table[temp/10]; //显示百位delay1(5);wx1=0;wx2=1;P2=table[temp%10]+0x80; //显示十位 加上0x80就显示小数点了。delay1(5);wx2=0;wx3=1;P2=table[xs%10]; //显示个位 delay1(5);wx3=0;wx4=1;P2=table[12]; //显示 C 字符delay1(5);wx4=0;}void setdisplay(){wx1=1;P2=table[count/10]; //显示百位delay1(5);wx1=0;wx2=1;P2=table[count%10]+0x80; //显示十位 加上0x80就显示小数点了。delay1(5);wx2=0;wx3=1;P2=table[0]; //显示个位 delay1(5);wx3=0;wx4=1;P2=table[12]; //显示 C 字符delay1(5);wx4=0;}void temperatureset()
{ uchar a=1;if(start==0){delay(4);if(start==0)a=0;while(!start);}delay(4);while(!a){ if(increase==0){ delay(4);if(increase==0)count++;while(!increase);}if(decrease==0){delay(4);if(decrease==0)
count--;
while(!decrease);}setdisplay();if(start==0){delay(4);if(start==0)a=1;while(!start);}}}void motor_contorl(){ /*if(temp<18){wflag=1;stopflag=0 ;}
else if(temp>28){wflag=0;
stopflag=0 ;
}
*///else if(temp<count)if(temp<count){wflag=1;
stopflag=0 ;
}
else if(temp>count){wflag=0;
stopflag=0 ;
}else if(temp==count)stopflag=1;if(stopflag==1)
{motor=0;
}else if(wflag!=1){motor=1;
}}void main(){ while(1){ temperatureset();motor_contorl();ReadTemperature();tempreature_display();}
}
代码说明:
DS18B20的温度采集和温度显示是两个重要的部分。
第一部分:DS18B20温度传感器温度采集。具体介绍看相关资料,比较简单,这里就不详细说明。相关的功能函数:
void Init_DS18B20() //初始化DS18B20
uchar ReadOneChar() //读一个字节
void WriteOneChar(unsigned char dat) //写一个字节
void ReadTemperature() //读取当前的温度
第二部分:
void setdisplay() //设置风扇开始散热的温度值
void tempreature_display() //相应的温度在数码管上显示
Protues仿真图: