利用单片机芯片89C51及温度传感芯片DS18B20完成温度的检测,利用SHT15完成湿度测量的编译程序
展开全部
DS18B20的程序
#i nclude <reg51.h>
sbit DQ =P3^7; //定义通信端口
//延时函数
extern delay(int n);
//extern void send (unsigned char ff);
//初始化函数
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);
}
//读取温度
unsigned int ReadTemperature(void)
{
unsigned char a=0;
unsigned char b=0;
unsigned int t=0;
// float tt=0;
Init_DS18B20();
WriteOneChar(0xCC); // 跳过读序号列号的操作
WriteOneChar(0x44); // 启动温度转换
Init_DS18B20();
WriteOneChar(0xCC); //跳过读序号列号的操作
WriteOneChar(0xBE); //读取温度寄存器等(共可读9个寄存器) 前两个就是温度
a=ReadOneChar();
b=ReadOneChar();
send(a);
send(b);
send(0xff);
t=b;
t<<=8;
t=t|a;
tt=t*0.0625;
// tt= tt*10+0.5; //放大10倍输出并四舍五入---此行没用
return(tt);
}
main()
{
unsigned char i=0;
while(1)
{
i=ReadTemperature();//读温度
}
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
sbit DQ =P1^4;?? //定义通信端口
//延时函数
/*
void delay(unsigned int 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;
unsigned int t=0;
float tt=0;
Init_DS18B20();
WriteOneChar(0xCC); // 跳过读序号列号的操作
WriteOneChar(0x44); // 启动温度转换
Init_DS18B20();
WriteOneChar(0xCC); //跳过读序号列号的操作
WriteOneChar(0xBE); //读取温度寄存器等(共可读9个寄存器) 前两个就是温度
a=ReadOneChar();
b=ReadOneChar();
t=b;
t<<=8;
t=t|a;
tt=t*0.0625;
//t= tt*10+0.5; //放大10倍输出并四舍五入---此行没用
return(t);
}
main()
{
?unsigned char i=0;
? while(1)
? {
?? i=ReadTemperature();//读温度
? }
}
#i nclude <reg51.h>
sbit DQ =P3^7; //定义通信端口
//延时函数
extern delay(int n);
//extern void send (unsigned char ff);
//初始化函数
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);
}
//读取温度
unsigned int ReadTemperature(void)
{
unsigned char a=0;
unsigned char b=0;
unsigned int t=0;
// float tt=0;
Init_DS18B20();
WriteOneChar(0xCC); // 跳过读序号列号的操作
WriteOneChar(0x44); // 启动温度转换
Init_DS18B20();
WriteOneChar(0xCC); //跳过读序号列号的操作
WriteOneChar(0xBE); //读取温度寄存器等(共可读9个寄存器) 前两个就是温度
a=ReadOneChar();
b=ReadOneChar();
send(a);
send(b);
send(0xff);
t=b;
t<<=8;
t=t|a;
tt=t*0.0625;
// tt= tt*10+0.5; //放大10倍输出并四舍五入---此行没用
return(tt);
}
main()
{
unsigned char i=0;
while(1)
{
i=ReadTemperature();//读温度
}
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
sbit DQ =P1^4;?? //定义通信端口
//延时函数
/*
void delay(unsigned int 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;
unsigned int t=0;
float tt=0;
Init_DS18B20();
WriteOneChar(0xCC); // 跳过读序号列号的操作
WriteOneChar(0x44); // 启动温度转换
Init_DS18B20();
WriteOneChar(0xCC); //跳过读序号列号的操作
WriteOneChar(0xBE); //读取温度寄存器等(共可读9个寄存器) 前两个就是温度
a=ReadOneChar();
b=ReadOneChar();
t=b;
t<<=8;
t=t|a;
tt=t*0.0625;
//t= tt*10+0.5; //放大10倍输出并四舍五入---此行没用
return(t);
}
main()
{
?unsigned char i=0;
? while(1)
? {
?? i=ReadTemperature();//读温度
? }
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询