#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(0xBE); //读取温度寄存器
templ = ReadOneChar(); //温度低8位
temph = ReadOneChar(); //温度高8位
}
void main()
{
float temp;
char a;
Init_DS18B20();
WriteOneChar(0xcc);
WriteOneChar(0x44); // 启动温度转换
Init_DS18B20();
WriteOneChar(0xcc);
WriteOneChar(0xbe); //读取温度寄存器
templ = ReadOneChar(); //温度低8位
temph = ReadOneChar(); //温度高8位
temph&=0x07;
temp=((templ>>4)|(temph<<4));
temp+=(templ&0x0f)*0.0625;
a= temp/10;
P1=array[a];
a=temp-10*a;
P0=array[a];
}