http://zhidao.baidu.com/question/298746586.html
这个是我之前回答的问题,你可以参考,下面是参考程序
#include
#include
sbit DQ=P2^0;
bit presence;
unsigned char templ,temph;
char array[10]={0x7e,0x48,0x3d,0x6d,0x4b,0x67,0x73,0x4c,0x7f,0x4f};
void Delay(unsigned int num)//可定义延时
{
while( --num );
}
bit Init_DS18B20(void)
{
DQ = 1; //DQ复位
Delay(8); //稍做延时
DQ = 0; //单片机将DQ拉低
Delay(90); //精确延时大于 480us
DQ = 1; //拉高总线
Delay(8);
presence = DQ; //如果=0则初始化成功 =1则初始化失败
Delay(100);
DQ = 1;
return(presence); //返回信号,0=presence,1= no presence
}
unsigned int 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);
}
void 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;
}
}
void Read_Temperature(void)
{
Init_DS18B20();
WriteOneChar(0xcc); // 跳过读序号列号的操作
WriteOneChar(0x44); // 启动温度转换
Init_DS18B20();
WriteOneChar(0xCC); //跳过读序号列号的操作
WriteOneChar(0x33); //读取温度寄存器
templ = ReadOneChar(); //温度低8位
temph = ReadOneChar(); //温度高8位
}
void main()
{
float temp;
char a;
Read_Temperature();
//寄存器templ,temph就是你的b20的唯一码
}
先调取每个18B20唯一身份证号,然后写入rom中,然后所有挂接在一根线上,利用18B20序列号查询命令进行核对,是哪个就读取哪个 ,读是33H,匹配是55H,略过为ccH