各位大侠帮忙看看我的18B20驱动有什么问题,结果相差很大。

2020-02-05 09:27发布

/******************************************************************/
/*                 DS18B20驱动程序 (12M晶振)                    */
/******************************************************************/
void delay(unsigned int i)
{
   while(i--);
}
//初始化函数
void Init_DS18B20(void)
{
   unsigned char x=0;
   DQ=1;
   delay(8);
   DQ=0;
   delay(80);
   DQ=1;
   delay(14);
   x=DQ;
   delay(20);
}

//读一个字节
int ReadOneByte(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);
}

//写一个字节
void WriteOneByte(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);
}

//DS18B20程序读取温度
int ReadTemperature(void)
{
  unsigned char a=0;
  unsigned char b=0;
  unsigned int  t=0;


  Init_DS18B20();
  WriteOneByte(0xCC); // 跳过读序号列号的操作
  WriteOneByte(0x44); // 启动温度转换
  delay(125);

  Init_DS18B20();
  WriteOneByte(0xCC); //跳过读序号列号的操作
  WriteOneByte(0xBE); //读取温度寄存器等(共可读9个寄存器) 前两个就是温度

  a=ReadOneByte();
  b=ReadOneByte();
  t=((b*256)+a)*0.0625;

  delay(200);
  return(t);
}
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。