#include
sbit warmer="P1"^4;
sbit led_run=P1^0;
//sbit k_power=P3^3;
sbit zf="P2"^0;
sbit bai="P2"^1;
sbit shi="P2"^2;
sbit ge="P2"^3;
sbit dots="P2"^4;
sbit xs="P2"^5;
sbit DQ =P3^3; //定义通信端口
//延时函数
unsigned char tab[]={ 0xc0,0xf9,0xa4,0xb0, // 0, 1, 2, 3
0x99,0x92,0x82,0xf8,0x80,0x90, 0xff};
//4 5 6 7 8 9
unsigned int t="0";
unsigned char tflag;
unsigned char data disdata[4];
void delay(unsigned char i)
{
while(i--);
}
//初始化函数
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);
}
//读一个字节
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);
}
//写一个字节
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);
}
//读取温度
ReadTemperature(void)
{
unsigned char a="0";
unsigned char b="0";
Init_DS18B20();
WriteOneChar(0xCC); // 跳过读序号列号的操作 发送指令0xcc
WriteOneChar(0x44); // 启动温度转换 发送指令0x44
Init_DS18B20();
WriteOneChar(0xCC); //跳过读序号列号的操作
WriteOneChar(0xBE); //读取温度寄存器等(共可读9个寄存器) 前两个就是温度 发送指令0xbe
a=ReadOneChar(); //读取温度值低位
b=ReadOneChar(); //读取温度值高位
t=b;
t<<=8; //值左移8位
//a=a>>4; //低位右移4位,舍弃小数部分
//t=b<<4; //高位左移4位,舍弃符号位
//t=t|a;
t=t|a; //合并高低位数值
if(t<0xfff)
tflag="1";
else
{
tflag="0";
t=~t+1; //负值换算
}
t=t*(0.625); //温度扩大10倍,精确到1位小数
return(t);
}
void display_temper(unsigned int i)
{
disdata[0]=i/1000; //百位数
disdata[1]=i%1000/100; //十位数
disdata[2]=i%100/10; //个位数
disdata[3]=i%10; //小数位
if(tflag==1)
tflag="0xff"; //正号,不显示
else
tflag="0xbf"; //负号,显示-
P2=0xff;
zf=0;
P0=tflag;
delay(150);
P0=0xff;
zf=1;
bai=0;
if(disdata[0]>0)P0=tab[disdata[0]];
delay(150);
bai=1;
shi=0;
P0=tab[disdata[1]];
delay(150);
shi=1;
ge=0;
P0=tab[disdata[2]];
delay(100);
ge=1;
dots=0;
P0=0x7f;
delay(150);
dots=1;
xs=0;
P0=tab[disdata[3]];
delay(150);
P0=0xff;
P2=0xff;
}
void main(void)
{unsigned int temp;
while(1) //主循环
{ temp="ReadTemperature"();
display_temper(temp);
}
}