单片机温度传感器的应用

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

#include
#include
#define uchar unsigned char
#define uint unsigned int
////////////////////
sbit DC=P1^5;//温度传感器接口
sbit DQ=P1^6;//温度传感器接口
//////////按键接口/////////////////////////////////
//////////////////////////////////////////////////////
sbit w1=P3^3;
sbit w2=P3^4;
sbit w3=P3^5;
sbit w4=P3^6;
sbit buzzor=P1^0;
sbit wireless=P1^1;
/////共阴数码管段选//////////////////////////////////////////////
uchar code table[]=
{0x3f,
0x06,0x5b,0x4f,0x66,0x6d,
0x7d,0x07,0x7f,0x6f};// 0-9
uint wen_du;
uint wen_du1;
uchar d1,d2,d3,d4;//显示数据暂存变量
void delay(uint ms)
{
uchar x;
for(ms;ms>0;ms--)
for(x=10;x>0;x--);
}
/***********ds18b20延迟子函数(晶振12MHz )*******/
void delay_18B20(uint i)
{
while(i--);
}
/**********ds18b20初始化函数**********************/
void Init_DS18B20()
{
uchar x=0;
DQ=1; //DQ复位
delay_18B20(8); //稍做延时
DQ=0; //单片机将DQ拉低
delay_18B20(80); //精确延时 大于 480us
DQ=1; //拉高总线
delay_18B20(14);
x=DQ; //稍做延时后 如果x=0则初始化成功 x=1则初始化失败
delay_18B20(20);
}
/***********ds18b20读一个字节**************/
uchar ReadOneChar()
{
uchar i=0;
uchar dat=0;
for (i=8;i>0;i--)
{
DQ=0; // 给脉冲信号
dat>>=1;
DQ=1; // 给脉冲信号
if(DQ)
dat|=0x80;
delay_18B20(4);
}
return(dat);
}
/*************ds18b20写一个字节****************/
void WriteOneChar(uchar dat)
{
uchar i=0;
for (i=8;i>0;i--)
{
DQ=0;
DQ=dat&0x01;
delay_18B20(5);
DQ=1;
dat>>=1;
}
}
/**************读取ds18b20当前温度************/
void ReadTemperature()
{
uchar a=0;
uchar b=0;
uchar t=0;
Init_DS18B20();
WriteOneChar(0xCC); // 跳过读序号列号的操作
WriteOneChar(0x44); // 启动温度转换
delay_18B20(100); // this message is wery important
Init_DS18B20();
WriteOneChar(0xCC); //跳过读序号列号的操作
WriteOneChar(0xBE); //读取温度寄存器等(共可读9个寄存器) 前两个就是温度
delay_18B20(100);
a=ReadOneChar(); //读取温度值低位
b=ReadOneChar(); //读取温度值高位
wen_du=((b*256+a)>>4); //当前采集温度值除16得实际温度值
}

/**********ds18b20初始化函数**********************/
void Init_DS18B201()
{
uchar x=0;
DC=1; //DQ复位
delay_18B20(8); //稍做延时
DC=0; //单片机将DQ拉低
delay_18B20(80); //精确延时 大于 480us
DC=1; //拉高总线
delay_18B20(14);
x=DC; //稍做延时后 如果x=0则初始化成功 x=1则初始化失败
delay_18B20(20);
}
/***********ds18b20读一个字节**************/
uchar ReadOneChar1()
{
uchar i=0;
uchar dat=0;
for (i=8;i>0;i--)
{
DC=0; // 给脉冲信号
dat>>=1

;
DC=1; // 给脉冲信号
if(DC)
dat|=0x80;
delay_18B20(4);
}
return(dat);
}
/*************ds18b20写一个字节****************/
void WriteOneChar1(uchar dat)
{
uchar i=0;
for (i=8;i>0;i--)
{
DC=0;
DC=dat&0x01;
delay_18B20(5);
DC=1;
dat>>=1;
}
}
/**************读取ds18b20当前温度************/
void ReadTemperature1()
{
uchar a=0;
uchar b=0;
uchar t=0;
Init_DS18B201();
WriteOneChar1(0xCC); // 跳过读序号列号的操作
WriteOneChar1(0x44); // 启动温度转换
delay_18B20(100); // this message is wery important
Init_DS18B201();
WriteOneChar1(0xCC); //跳过读序号列号的操作
WriteOneChar1(0xBE); //读取温度寄存器等(共可读9个寄存器) 前两个就是温度
delay_18B20(100);
a=ReadOneChar1(); //读取温度值低位
b=ReadOneChar1(); //读取温度值高位
wen_du1=((b*256+a)>>4); //当前采集温度值除16得实际温度值
}
void display()//显示温度
{ w1=0;
P0=table[d1];
delay(10); //第1位
P0=0x00;w1=1;delay(1);

w2=0;P0=table[d2];delay(10);//第2位
P0=0x00;w2=1;delay(1);

w3=0;
P2=table[d3];
delay(10); //第1位
P2=0x00;w3=1;delay(1);

w4=0;P2=table[d4];delay(10);//第2位
P2=0x00;w4=1;delay(1);

}

void zi_dong()//自动温控模式
{

d1=wen_du%10;d2=wen_du/10;
d3=(wen_du1+3)%10;d4=(wen_du1+3)/10;
if(wen_du1-wen_du>3)
buzzor=0;
display();

}
void main()
{ uint j;

ReadTemperature();
ReadTemperature1();
while(1)
{
ReadTemperature();
ReadTemperature1();
for(j=0;j<100;j++){zi_dong();}//自动温控模式
if(wireless==0)
{ buzzor=1;}


}
}

相关文档
最新文档