久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

基于51單片機(jī)的LCD1602四數(shù)據(jù)線驅(qū)動(dòng)程序

 共同成長(zhǎng)888 2020-02-26

基于51單片機(jī)的LCD1602四數(shù)據(jù)線驅(qū)動(dòng)程序,LCD1602單片機(jī)驅(qū)動(dòng)程序

關(guān)鍵字:LCD1602,,C程序

/這個(gè)程序已經(jīng)調(diào)試過了
//下面調(diào)用實(shí)例 
//////////////////////////////////
//LCD1602讀寫頭文件
//四線驅(qū)動(dòng)方式
//////////////////////////////////
#include  
#include "LCD1602.h" 
/*----------- 
管腳定義在液晶頭文件中 
-----------*/ 
void main(void){ 
LCD_init(); 
p=LCD_PutStr("Hello Lcd1602!\n",-1); //顯示一段文字 
p=LCD_PutNum(1234,2,p); //顯示12.34這個(gè)數(shù) 
while(1); 
}
/*---------------------------------------------------------
液晶LCD1602C 使用4條數(shù)據(jù)線(D4~D7)
-----------------------------------------------------------*/
/*-------------------------------------------------------------
LCD引腳定義
1---GND 
2---VCC
3---VO
4---RS
5---RW
6---EN
7到14--D0-D7
15--背景燈+
16--背景燈-
-----------------------------------------------------------------*/
#include
#include


#define LCD_DATA P2
sbit LCD1602_RS=P2^2;
sbit LCD1602_EN=P2^3;
int p=0;
/*--------------------------------------------------------------------------------------------------
函數(shù)說明
--------------------------------------------------------------------------------------------------*/
void LCD_init(void);
void LCD_en_write(void);
void LCD_write_command(unsigned char command) ;
void LCD_write_data(unsigned char Recdata);
void LCD_set_xy (unsigned char x, unsigned char y);
void LCD_write_string(unsigned char X,unsigned char Y,unsigned char *s);
void LCD_write_char(unsigned char X,unsigned char Y,unsigned char Recdata);
void delay_nus(unsigned int n);
void delay_nms(unsigned int n);
void delay_1us(void)                 //1us延時(shí)函數(shù)
{
   _nop_();
}
void delay_nus(unsigned int n)       //N us延時(shí)函數(shù)
{
   unsigned int i=0;
   for (i=0;i   delay_1us();
}

void delay_1ms(void)                 //1ms延時(shí)函數(shù)
{
   unsigned int i;
   for (i=0;i<1140;i++);
}

void delay_nms(unsigned int n)       //N ms延時(shí)函數(shù)
{
   unsigned int i=0;
   for (i=0;i   delay_1ms();
}

void LCD_init(void)         //液晶初始化
{
LCD_write_command(0x28);
delay_nus(40); 
LCD_write_command(0x28);
delay_nus(40); 
LCD_write_command(0x28);
delay_nus(40); 

LCD_en_write();
delay_nus(40);
LCD_write_command(0x28); //4位顯示
LCD_write_command(0x0c); //顯示開
LCD_write_command(0x01); //清屏
delay_nms(2);
}
void LCD_en_write(void) //液晶使能
{
LCD1602_EN=1;
delay_nus(1);
LCD1602_EN=0;
}
void LCD_write_command(unsigned char command) //寫指令
{
delay_nus(16);
LCD1602_RS=0;        //RS=0
LCD_DATA&=0X0f;         //清高四位
LCD_DATA|=command&0xf0; //寫高四位
LCD_en_write();
command=command<<4;          //低四位移到高四位
LCD_DATA&=0x0f;         //清高四位
LCD_DATA|=command&0xf0; //寫低四位
LCD_en_write();

}
void LCD_write_data(unsigned char Recdata) //寫數(shù)據(jù)
{
delay_nus(16);
LCD1602_RS=1;       //RS=1
LCD_DATA&=0X0f;       //清高四位
LCD_DATA|=Recdata&0xf0; //寫高四位
LCD_en_write();
Recdata=Recdata<<4;               //低四位移到高四位
LCD_DATA&=0X0f;        //清高四位
LCD_DATA|=Recdata&0xf0;   //寫低四位
LCD_en_write();
}

void LCD_set_xy( unsigned char x, unsigned char y ) //寫地址函數(shù)
{
    unsigned char address;
    if (y == 0) address = 0x80 + x;
    else address = 0xc0 + x;
    LCD_write_command(address);
}
void LCD_write_char(unsigned char X,unsigned char Y,unsigned char Recdata) //列x=0~15,行y=0,1
{
LCD_set_xy(X, Y); //寫地址
LCD_write_data(Recdata);
}
int LCD_PutStr(unsigned char *DData,int pos){ 
unsigned char i; 
if(pos==-1){  
   LCD_write_command(0x01); //清屏
   delay_nms(2);
   pos=0; 
   } 
while((*DData)!='\0'){  
switch(*DData){   
     case '\n': //如果是\n,,則換行   
     {    
     if(pos<17){     
       for(i=pos;i<16;i++)
         LCD_write_char(i%16, i/16, ' ');
         pos=16;
         }
         else{     
         for(i=pos;i<32;i++) LCD_write_char(i%16, i/16, ' ');
         pos=32;
         }    
     break;   
     }
   
     case '\b': //如果是\b,則退格   
     {
     if(pos>0) pos--;   
     LCD_write_char(pos%16, pos/16, ' ');    
     break;   
     }
   
     default:   
     {    
    
     if((*DData)<0x20){
     *DData=' ';
     }
    
     LCD_write_char(pos%16, pos/16,*DData);
     pos++;    
     break;   
     }  
      }  
      DData++; 
       } 
       return(pos);
       }
//----------------------------以下函數(shù)用于輸出數(shù)字---------------------
int LCD_PutNum(unsigned long num,int XS,int pos){    //從右邊數(shù),,保留幾位小數(shù)
unsigned long tmp=0; 
unsigned char numbits=0; 
if(pos==-1){  
LCD_write_command(0x01);
delay_nms(2);  
pos=0; 

if(num==0){  
   LCD_write_char(pos%16, pos/16, '0');
   pos++;
   }
   else{  
   if(num<0){   
   LCD_write_char(pos%16, pos/16, '-');   
   num*=(-1);   
   pos++;  
   }  
   while(num){   
   tmp=tmp*10+(num%10);   
   num=num/10;   
   numbits++;
   }  
   while(tmp){   
   LCD_write_char(pos%16, pos/16, (tmp%10)+48);
   tmp=tmp/10;
   pos++;
   numbits--;
   if(numbits==XS) pos=LCD_PutStr(".",pos); //顯示小數(shù)點(diǎn)
   }
   while(numbits--){
   LCD_write_char(pos%16, pos/16, '0');
   pos++;
   }
   }
   return(pos);
}               

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,,所有內(nèi)容均由用戶發(fā)布,,不代表本站觀點(diǎn),。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購(gòu)買等信息,,謹(jǐn)防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào),。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多