温度传感器DS18B20 89C51单片机C语言程序
扫描二维码
随时随地手机看文章
#include #define ucharunsignedchar /*宏定义 字符型数据 整型数据 */ /*****延时子程序*****/ /*****初始化DS18B20*****/ /*****读一个字节*****/ /*****写一个字节*****/ /*****读取温度*****/ unsigned char a=0; void main() P0 = 0x80;
#define uint unsigned int
uint DD;
sbit DQ=P2^2; //定义DS18B20总线I/O
unsigned int temputer;
char Co
0x7d, 0x07, 0x7f, 0x6f};
uchar co
void Delay_DS18B20(int num)
{
while(num--) ;
}
void delay(unsigned int time) //延时子程序 入口参数 time
{
unsigned int n;
n=0;
while(n{n++;}
return;
}
void Init_DS18B20(void)
{
unsigned char x=0;
DQ = 1; //DQ复位
Delay_DS18B20(2); //稍做延时
DQ = 0; //单片机将DQ拉低
Delay_DS18B20(80); //精确延时,大于480us
DQ = 1; //拉高总线
Delay_DS18B20(14);
x = DQ; //稍做延时后,如果x=0则初始化成功,x=1则初始化失败
Delay_DS18B20(20);
}
unsigned char 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_DS18B20(8);
}
return(dat);
}
void WriteOneChar(unsigned char dat)
{
unsigned char i=0;
for (i=8; i>0; i--)
{
DQ = 0;
DQ = dat&0x01;
Delay_DS18B20(10);
DQ = 1;
dat>>=1;
}
}
unsigned int ReadTemperature(void)
{
unsigned char b=0;
unsigned int t=0;
float tt=0;
Init_DS18B20();
// Init_DS18B20();
WriteOneChar(0xCC); //跳过读序号列号的操作
WriteOneChar(0x44); //启动温度转换
Delay_DS18B20(20);
Init_DS18B20();
WriteOneChar(0xCC); //跳过读序号列号的操作
WriteOneChar(0xBE); //读取温度寄存器
a=ReadOneChar(); //读低8位
b=ReadOneChar(); //读高8位
t=b;
t<<=8;
t=t|a;
tt=t*0.0625;
t= tt*10+0.5; //放大10倍输出并四舍五入
return(t);
}
{
while(1)
{
temputer=ReadTemperature();//temputer 是3位数的 是温度扩大了10倍
P0 = Co
P1 = C[1];
delay(100);
DD=temputer/100;
temputer=temputer-DD*100;
P0 = Co
P1 = C[2];
delay(100);
P1 = C[3];
delay(100);
P0 = Co
P1 = C[4];
delay(10);
}
}