找回密碼
 立即注冊

QQ登錄

只需一步,快速開始

搜索
查看: 1706|回復(fù): 1
打印 上一主題 下一主題
收起左側(cè)

超聲測距1602顯示

[復(fù)制鏈接]
跳轉(zhuǎn)到指定樓層
樓主
ID:392097 發(fā)表于 2018-8-31 19:30 | 只看該作者 回帖獎勵 |倒序瀏覽 |閱讀模式
#include <AT89x51.H>                //器件配置文件
#include <intrins.h>
#define  RX  P2_7
#define  TX  P2_6

#define LCM_RW  P3_4 //定義LCD引腳
#define LCM_RS  P3_3
#define LCM_E   P3_5
#define LCM_Data  P1

#define Key_Data P2_0 //定義Keyboard引腳
#define Key_CLK  P3_2

#define Busy    0x80 //用于檢測LCM狀態(tài)字中的Busy標識

void LCMInit(void);
void DisplayOneChar(unsigned char X, unsigned char Y, unsigned char DData);
void DisplayListChar(unsigned char X, unsigned char Y, unsigned char code *DData);
void Delay5Ms(void);
void Delay400Ms(void);
void Decode(unsigned char ScanCode);
void WriteDataLCM(unsigned char WDLCM);
void WriteCommandLCM(unsigned char WCLCM,BuysC);

unsigned char ReadDataLCM(void);
unsigned char ReadStatusLCM(void);
unsigned char code mcustudio[] ={"mcustudio.com.cn"};
unsigned char code email[] =    {"fhwxaoo@163.com "};
unsigned char code Cls[] =      {"                "};
unsigned char code ASCII[15] =    {'0','1','2','3','4','5','6','7','8','9','.','-','M'};

static unsigned char DisNum = 0; //顯示用指針                                  
       unsigned int  time=0;
           unsigned long S=0;
           bit      flag =0;
           unsigned char disbuff[4]           ={ 0,0,0,0,};


//寫數(shù)據(jù)
void WriteDataLCM(unsigned char WDLCM)
{
        ReadStatusLCM(); //檢測忙
        LCM_Data = WDLCM;
        LCM_RS = 1;
        LCM_RW = 0;
        LCM_E = 0; //若晶振速度太高可以在這后加小的延時
        LCM_E = 0; //延時
        LCM_E = 1;
}

//寫指令
void WriteCommandLCM(unsigned char WCLCM,BuysC) //BuysC為0時忽略忙檢測
{
        if (BuysC) ReadStatusLCM(); //根據(jù)需要檢測忙
        LCM_Data = WCLCM;
        LCM_RS = 0;
        LCM_RW = 0;       
        LCM_E = 0;
        LCM_E = 0;
        LCM_E = 1;       
}

//讀數(shù)據(jù)
unsigned char ReadDataLCM(void)
{
        LCM_RS = 1;
        LCM_RW = 1;
        LCM_E = 0;
        LCM_E = 0;
        LCM_E = 1;
        return(LCM_Data);
}

//讀狀態(tài)
unsigned char ReadStatusLCM(void)
{
        LCM_Data = 0xFF;
        LCM_RS = 0;
        LCM_RW = 1;
        LCM_E = 0;
        LCM_E = 0;
        LCM_E = 1;
        while (LCM_Data & Busy); //檢測忙信號
        return(LCM_Data);
}

void LCMInit(void) //LCM初始化
{
        LCM_Data = 0;
        WriteCommandLCM(0x38,0); //三次顯示模式設(shè)置,不檢測忙信號
        Delay5Ms();
        WriteCommandLCM(0x38,0);
        Delay5Ms();
        WriteCommandLCM(0x38,0);
        Delay5Ms();

        WriteCommandLCM(0x38,1); //顯示模式設(shè)置,開始要求每次檢測忙信號
        WriteCommandLCM(0x08,1); //關(guān)閉顯示
        WriteCommandLCM(0x01,1); //顯示清屏
        WriteCommandLCM(0x06,1); // 顯示光標移動設(shè)置
        WriteCommandLCM(0x0F,1); // 顯示開及光標設(shè)置
}

//按指定位置顯示一個字符
void DisplayOneChar(unsigned char X, unsigned char Y, unsigned char DData)
{
        Y &= 0x1;
        X &= 0xF; //限制X不能大于15,Y不能大于1
        if (Y) X |= 0x40; //當要顯示第二行時地址碼+0x40;
        X |= 0x80; //算出指令碼
        WriteCommandLCM(X, 1); //發(fā)命令字
        WriteDataLCM(DData); //發(fā)數(shù)據(jù)
}

//按指定位置顯示一串字符
void DisplayListChar(unsigned char X, unsigned char Y, unsigned char code *DData)
{
        unsigned char ListLength;

  ListLength = 0;
        Y &= 0x1;
        X &= 0xF; //限制X不能大于15,Y不能大于1
        while (DData[ListLength]>0x19) //若到達字串尾則退出
                {
                        if (X <= 0xF) //X坐標應(yīng)小于0xF
                                {
                                        DisplayOneChar(X, Y, DData[ListLength]); //顯示單個字符
                                        ListLength++;
                                        X++;
                                }
                }
}

//5ms延時
void Delay5Ms(void)
{
        unsigned int TempCyc = 5552;
        while(TempCyc--);
}

//400ms延時
void Delay400Ms(void)
{
        unsigned char TempCycA = 5;
        unsigned int TempCycB;
        while(TempCycA--)
                {
                        TempCycB=7269;
                        while(TempCycB--);
                };
}
/********************************************************/
    void Conut(void)
        {
         time=TH0*256+TL0;
         TH0=0;
         TL0=0;
       
         S=(time*1.7)/100;     //算出來是CM
         if((S>=700)||flag==1) //超出測量范圍顯示“-”
         {         
          flag=0;
         
          DisplayOneChar(0, 1, ASCII[11]);
          DisplayOneChar(1, 1, ASCII[10]);        //顯示點
          DisplayOneChar(2, 1, ASCII[11]);
          DisplayOneChar(3, 1, ASCII[11]);
          DisplayOneChar(4, 1, ASCII[12]);        //顯示M
         }
         else
         {
          disbuff[0]=S%1000/100;
          disbuff[1]=S%1000%100/10;
          disbuff[2]=S%1000%10 %10;
          DisplayOneChar(0, 1, ASCII[disbuff[0]]);
          DisplayOneChar(1, 1, ASCII[10]);        //顯示點
          DisplayOneChar(2, 1, ASCII[disbuff[1]]);
          DisplayOneChar(3, 1, ASCII[disbuff[2]]);
          DisplayOneChar(4, 1, ASCII[12]);        //顯示M
         }
        }
/********************************************************/
     void zd0() interrupt 1                  //T0中斷用來計數(shù)器溢出,超過測距范圍
  {
    flag=1;                                                         //中斷溢出標志
  }
/********************************************************/
     void  StartModule()                          //啟動模塊
  {
          TX=1;                                             //啟動一次模塊
          _nop_();
          _nop_();
          _nop_();
          _nop_();
          _nop_();
          _nop_();
          _nop_();
          _nop_();
          _nop_();
          _nop_();
          _nop_();
          _nop_();
          _nop_();
          _nop_();
          _nop_();
          _nop_();
          _nop_();
          _nop_();
          _nop_();
          _nop_();
          _nop_();
          TX=0;
  }
/********************************************************/
void delayms(unsigned int ms)
{
        unsigned char i=100,j;
        for(;ms;ms--)
        {
                while(--i)
                {
                        j=10;
                        while(--j);
                }
        }
}
/*********************************************************/
void main(void)
{
        unsigned char TempCyc;
        Delay400Ms(); //啟動等待,等LCM講入工作狀態(tài)
        LCMInit(); //LCM初始化
        Delay5Ms(); //延時片刻(可不要)
        DisplayListChar(0, 0, mcustudio);
        DisplayListChar(0, 1, email);
        ReadDataLCM();//測試用句無意義
        for (TempCyc=0; TempCyc<10; TempCyc++)
        Delay400Ms(); //延時
        DisplayListChar(0, 1, Cls);       
        while(1)
        {
         TMOD=0x01;                   //設(shè)T0為方式1,GATE=1;
         TH0=0;
         TL0=0;         
         ET0=1;             //允許T0中斷
         EA=1;                           //開啟總中斷                       
       
        while(1)
          {
             StartModule();
                // DisplayOneChar(0, 1, ASCII[0]);
             while(!RX);                //當RX為零時等待
             TR0=1;                            //開啟計數(shù)
             while(RX);                        //當RX為1計數(shù)并等待
             TR0=0;                                //關(guān)閉計數(shù)
         Conut();                        //計算
                 delayms(80);                //80MS
                 
          }
        }
}


分享到:  QQ好友和群QQ好友和群 QQ空間QQ空間 騰訊微博騰訊微博 騰訊朋友騰訊朋友
收藏收藏1 分享淘帖 頂 踩
回復(fù)

使用道具 舉報

沙發(fā)
ID:1 發(fā)表于 2018-9-1 04:06 | 只看該作者
補全原理圖或者詳細說明一下電路連接即可獲得100+黑幣
回復(fù)

使用道具 舉報

您需要登錄后才可以回帖 登錄 | 立即注冊

本版積分規(guī)則

手機版|小黑屋|51黑電子論壇 |51黑電子論壇6群 QQ 管理員QQ:125739409;技術(shù)交流QQ群281945664

Powered by 單片機教程網(wǎng)

快速回復(fù) 返回頂部 返回列表