本设计基于51单片机的多路温度检测调节串口传输系统(仿真+源码+视频讲解)
仿真:proteus8.9
程序编译器:keil 4
编程语言:C语言
编号C0009
【腾讯文档】C0009 网盘链接
资料下载链接
功能说明:
1、采用四个DS18B20温度传感器测温并用LCD1602显示四路温度值;
2、按键为设置按键、加键和减键,可设置上下限温度控制范围;
3、当每路温度值超过设定的上或下限时,相应的指示灯亮;
4、当平均温度值超过设定的上限时,继电器吸合,风扇转动表示降温;
5、当平均温度值低于设定的下限时,继电器吸合,加热膜工作表示升温;
6、利用串口传输模块实时将平均温度值发送到串口调试助手。
仿真图(提供源文件):
源程序(提供源文件):
unsigned char ReadOneChar1(void)
{
unsigned char i=0;
unsigned char dat = 0;
for (i=8;i>0;i--)
{
DQ1 = 0; // 给脉冲信号
dat>>=1;
DQ1 = 1; // 给脉冲信号
if(DQ1)
dat|=0x80;
Delay_DS18B20(4);
}
return(dat);
}
void WriteOneChar1(unsigned char dat)
{
unsigned char i=0;
for (i=8; i>0; i--)
{
DQ1 = 0;
DQ1 = dat&0x01;
Delay_DS18B20(5);
DQ1 = 1;
dat>>=1;
}
}
/*****读取温度*****/
unsigned int ReadTemperature1(void)
{
unsigned char a=0;
unsigned char b=0;
unsigned int t=0;
float tt=0;
Init1_DS18B20();
WriteOneChar1(0xCC); //跳过读序号列号的操作
WriteOneChar1(0x44); //启动温度转换
Init1_DS18B20();
WriteOneChar1(0xCC); //跳过读序号列号的操作
WriteOneChar1(0xBE); //读取温度寄存器
a=ReadOneChar1(); //读低8位
b=ReadOneChar1(); //读高8位
t=b;
t<<=8;
t=t|a;
tt=t*0.0625;
// t= tt*10+0.5; //放大10倍输出并四舍五入
t= tt*10+0.5;
return(t);
}
/*****初始化DS18B20 温度传感器3*****/
void Init2_DS18B20(void)
{
unsigned char x=0;
DQ2 = 1; //DQ复位
Delay_DS18B20(8); //稍做延时
DQ2 = 0; //单片机将DQ拉低
Delay_DS18B20(80); //精确延时,大于480us
DQ2 = 1; //拉高总线
Delay_DS18B20(14);
x = DQ2; //稍做延时后,如果x=0则初始化成功,x=1则初始化失败
Delay_DS18B20(20);
}
unsigned char ReadOneChar2(void)
{
unsigned char i=0;
unsigned char dat = 0;
for (i=8;i>0;i--)
{
DQ2 = 0; // 给脉冲信号
dat>>=1;
DQ2 = 1; // 给脉冲信号
if(DQ2)
dat|=0x80;
Delay_DS18B20(4);
}
return(dat);
}
void WriteOneChar2(unsigned char dat)
{
unsigned char i=0;
for (i=8; i>0; i--)
{
DQ2 = 0;
DQ2 = dat&0x01;
Delay_DS18B20(5);
DQ2 = 1;
dat>>=1;
}
}
/*****读取温度*****/
unsigned int ReadTemperature2(void)
{
unsigned char a=0;
unsigned char b=0;
unsigned int t=0;
float tt=0;
Init2_DS18B20();
WriteOneChar2(0xCC); //跳过读序号列号的操作
WriteOneChar2(0x44); //启动温度转换
Init2_DS18B20();
WriteOneChar2(0xCC); //跳过读序号列号的操作
WriteOneChar2(0xBE); //读取温度寄存器
a=ReadOneChar2(); //读低8位
b=ReadOneChar2(); //读高8位
t=b;
t<<=8;
t=t|a;
tt=t*0.0625;
// t= tt*10+0.5; //放大10倍输出并四舍五入
t= tt*10+0.5;
return(t);
}
资料清单如下:
阅读全文