//--------温度处理---------
temp1=high;
temp2=low;
temp1=temp1<<4;
temp2=temp2>>4;
temp3=temp1|temp2;
high=temp3;
low=low&0x0f;
// ----------温度计算--------正数
zhen_temp[0]=high/100; //+'0';//百
zhen_temp[1]=high%100/10; //+'0'; 十
zhen_temp[2]=high%10; //+'0'; 个
temp1=low*625;
xiaoshu_temp[0]=temp1/1000;//+'0'; 小数
18B20 对应温度显示:ssss sXXX 高8位
XXXX .XXXX 低8位
现在实际温度 15.5℃,那各个对应值是多少?求解答 |