DS18B20读取温度并显示在数码管上

下面是我的函数
分3个文件:头文件,DS18B20系列子函数文件,主函数部分(既数据处理和显示部分)
头文件

#ifndef __TEMP_H_
#define __TEMP_H_

#include
#ifndef uchar
#define uchar unsigned char
#endif

#ifndef uint  
#define uint unsigned int
#endif

sbit DSPORT=P2^2;


void Delay1ms(uint );
uchar Ds18b20Init();
void Ds18b20WriteByte(uchar com);
uchar Ds18b20ReadByte();
void  Ds18b20ChangTemp();
void  Ds18b20ReadTempCom();
int Ds18b20ReadTemp();

#endif

DS18B20系列子函数文件,主要是读写一字节和开始转换温度以及读取温度

#include"temp.h"
/*******************************************************************************
*            : Delay1ms


*******************************************************************************/

void Delay1ms(uint y)
{
        uint x;
        for( ; y>0; y--)
        {
                for(x=110; x>0; x--);
        }
}
/*******************************************************************************
*            : Ds18b20Init
*                   : ʼ
*              :
*              : ʼɹ1ʧܷ0
*******************************************************************************/

uchar Ds18b20Init()
{
        uchar i;
        DSPORT = 0;                         //-480us~960us
        i = 70;         
        while(i--);
        DSPORT = 1;  
        i = 0;
        while(DSPORT) 
        {
                Delay1ms(1);
                i++;
                if(i>5)//ȴ>5MS
                {
                        return 0;
                }

        }
        return 1;
}

/*******************************************************************************
*            : Ds18b20WriteByt
*              :
*              :
*******************************************************************************/

void Ds18b20WriteByte(uchar dat)
{
        uint i, j;

        for(j=0; j<8; j++)
        {
                DSPORT = 0;
                i++;
                DSPORT = dat & 0x01;
                i=6;
                while(i--);  
                DSPORT =  1;  
                dat >>= 1;
        }
}
/*******************************************************************************
*            : Ds18b20ReadByte


*******************************************************************************/


uchar Ds18b20ReadByte()
{
        uchar byte, bi;
        uint i, j;         
        for(j=8; j>0; j--)
        {
                DSPORT = 0;
                i++;
                DSPORT = 1;
                i++;
                i++;
                bi = DSPORT;

                byte = (byte >> 1) | (bi << 7);                                               
                i = 4;
                while(i--);
        }                                 
        return byte;
}
/*******************************************************************************
*            : Ds18b20ChangTemp
*              :
*              :
*******************************************************************************/

void  Ds18b20ChangTemp()
{
        Ds18b20Init();
        Delay1ms(1);
        Ds18b20WriteByte(0xcc);  
        Ds18b20WriteByte(0x44);           
//        Delay1ms(100);

}
/******************************************************************************* *******************************************************************************/

void  Ds18b20ReadTempCom()
{         

        Ds18b20Init();
        Delay1ms(1);
        Ds18b20WriteByte(0xcc);         
        Ds18b20WriteByte(0xbe);         
}
/******************************************************************************* *******************************************************************************/

int Ds18b20ReadTemp()
{
        uchar temp = 0;
        uchar tmh, tml;
        Ds18b20ChangTemp();        
        Ds18b20ReadTempCom();
        tml = Ds18b20ReadByte();
        tmh = Ds18b20ReadByte();
        /*temp = tmh;
        //temp <<= 8;
        temp |= tml;*/
        tml>>=4;
        tmh<<=4;
        temp=tml|tmh;
        return temp;
}

主函数所在文件(主要是读取的数值转换成我们所需的温度以及温度的显示)

/**************************************************************************************
*		              DS18B20温度传感器实验												  *
实现现象:下载程序后,在温度传感器接口处,按照丝印方向插好温度传感器,数码管就会显示
			检测的温度值,
注意事项:																				  
***************************************************************************************/

#include "reg52.h"			 //此文件中定义了单片机的一些特殊功能寄存器
#include"temp.h"	

#define u16 unsigned int   //对数据类型进行声明定义
#define u8 unsigned char 


sbit numchoose=P2^6;
sbit wela=P2^7;

/*this code is the num form 0 to F in the LED tube*/
u8 duanxuantable[]={0x3f,0x06,0x5b,0x4f,
0x66,0x6d,0x7d,0x07,
0x7f,0x6f,0x77,0x7c,
0x39,0x5e,0x79,0x71};


char num=0;
u8 DisplayData[8];
//u8 code smgduan[10]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f};

/*******************************************************************************
* 函 数 名         : delay
* 函数功能		   : 延时函数,i=1时,大约延时10us
*******************************************************************************/
void delay(u16 i)
{
	while(i--);	
}


/*******************************************************************************
* 函 数 名         : datapros()
* 函数功能		   : 温度读取处理转换函数
* 输    入         : temp
* 输    出         : 无
*******************************************************************************/
u8 datapros(u8 temp) 	 
{
   	float tp;  
	if(temp>127)				//当温度值为负数
  	{
		DisplayData[0] = 0x40; 	  //   -
		//因为读取的温度是实际温度的补码,所以减1,再取反求出原码
		temp=temp-1;
		temp=~temp;
		tp=temp;
//		temp=tp/2;
		temp=tp*0.0625*100+0.5;	
		//留两个小数点就*100,+0.5是四舍五入,因为C语言浮点数转换为整型的时候把小数点
		//后面的数自动去掉,不管是否大于0.5,而+0.5之后大于0.5的就是进1了,小于0.5的就
		//算加上0.5,还是在小数点后面。
  	}
 	else
  	{			
		DisplayData[0] = 0x00;
		tp=temp;//因为数据处理有小数点所以将温度赋给一个浮点型变量
		//如果温度是正的那么,那么正数的原码就是补码它本身
//		temp=tp/2;
		temp=tp*0.625+0.5;	
		//留两个小数点就*100,+0.5是四舍五入,因为C语言浮点数转换为整型的时候把小数点
		//后面的数自动去掉,不管是否大于0.5,而+0.5之后大于0.5的就是进1了,小于0.5的就
		//算加上0.5,还是在小数点后面。
	}

	return temp;
}


/*******************************************************************************
* 函数名         :DigDisplay()
* 函数功能		 :数码管显示函数
* 输入           : 无
* 输出         	 : 无
*******************************************************************************/
void display(u8 num)
{
	u8 weitable[]={0,0,0,0};
	weitable[0]=DisplayData[0];
	weitable[1]=num/100;
	weitable[2]=(num/10)%10;
	weitable[3]=num%10;
	wela=1;
	P0=0xfe;
	wela=0;
	numchoose=1;
	P0=duanxuantable[weitable[0]];
	numchoose=0;
	delay(100);
	
	wela=1;
	P0=0xfd;
	wela=0;
	numchoose=1;
	P0=duanxuantable[weitable[1]];
	numchoose=0;
	delay(100);	
	
	wela=1;
	P0=0xfb;
	wela=0;
	numchoose=1;
	P0=duanxuantable[weitable[2]];
	numchoose=0;
	delay(100);
	
	wela=1;
	P0=0xf7;
	wela=0;
	numchoose=1;
	P0=duanxuantable[weitable[3]];
	numchoose=0;
	delay(100);
}
/*******************************************************************************
* 函 数 名       : main
* 函数功能		 : 主函数
* 输    入       : 无
* 输    出    	 : 无
*******************************************************************************/
void main()
{	
	u8 temp;
	u16 i;
	while(1)
	{

			display(temp);
			temp=datapros(Ds18b20ReadTemp());
			for(i=500;i>0;i--)
			{
				display(temp);
			}
	}		
}

主函数部分也可以直接写成这样,不过会导致数码管的个位明显亮于其他位,主文件 部分的主函数解决了这个问题但是会在DS18B20获取温度期间闪烁一下,因为每个命令的输入都要初始化一次,时间太长

void main()
{	
	while(1)
	{
		/*datapros(Ds18b20ReadTemp());
		DigDisplay();
		while(1)
		{
			display(datapros(Ds18b20ReadTemp()));
		}
	}		
}

你可能感兴趣的:(51单片机,DS18B20,DS18B20,80C51单片机)