51单片机温度显示底层

#include "onewire.h"

sbit DQ = P1^4;


void Delay_OneWire(unsigned int t)  
{
    unsigned char i;
    while(t--){
        for(i=0;i<12;i++);
    }
}

void Delay_us(void)
{
    unsigned char i;

    i = 30;
    while (--i);
}

//
void Write_DS18B20(unsigned char dat)
{
    unsigned char i;
    for(i=0;i<8;i++)
    {
        DQ = 0;
        DQ = dat&0x01;
        Delay_OneWire(5);
        DQ = 1;
        dat >>= 1;
    }
    Delay_OneWire(5);

}

//
unsigned char Read_DS18B20(void)
{
    unsigned char i;
    unsigned char dat;
//    unsigned char index = 0;
             
    for(i=0;i<8;i++)
    {
        DQ = 0;
        dat >>= 1;
        DQ = 1; 
           Delay_us();

        if(DQ)  
        {
            dat |= 0x80;
        }        
        Delay_OneWire(5);
    }
    return dat;
}

//
bit init_ds18b20(void)
{
      bit initflag = 0;
      
      DQ = 1;
      Delay_OneWire(12);
      DQ = 0;

      Delay_OneWire(80); // 
      DQ = 1;
      Delay_OneWire(10);  // 14
      initflag = DQ;     //
      Delay_OneWire(5);
  
      return initflag;
}

//
unsigned int rd_temperature(void)
{
    unsigned char low,high;
    
    init_ds18b20();
    Write_DS18B20(0xCC);
    Write_DS18B20(0x44);    
  
    init_ds18b20();
    Write_DS18B20(0xCC);
    Write_DS18B20(0xBE);    
    
    low=Read_DS18B20();
    high=Read_DS18B20();

    return (high<<8)+low;
    
}

H文件

#ifndef _ONEWIRE_H
#define _ONEWIRE_H
#include "STC15F2K60S2.h"

unsigned int rd_temperature(void);

#endif

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值