DS18B20讀取溫度並顯示在數碼管上

離子迴旋發表於2018-11-26

下面是我的函式
分3個檔案:標頭檔案,DS18B20系列子函式檔案,主函式部分(既資料處理和顯示部分)
標頭檔案

#ifndef __TEMP_H_
#define __TEMP_H_

#include<reg52.h>
#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()));
		}
	}		
}

相關文章