智能车制作

标题: lcd的程序看不懂 [打印本页]

作者: donsbin    时间: 2013-3-11 19:42
标题: lcd的程序看不懂
                写入字符串函数
void LCD_Write_String(unsigned char x,unsigned char y,unsigned char *s)   
{   
   if (y == 0)  
  {     
   LCD_Write_Com(0x80 + x);   
    }
  else  
  {   
    LCD_Write_Com(0xC0 + x);   
     }      
   while (*s)   
{   
    LCD_Write_Data( *s);
      s ++;   
    }
}
/*------------------------------------------------               写入字符函数 ------------------------------------------------*/
  void LCD_Write_Char(unsigned char x,unsigned char y,unsigned char Data)  
{     
  if (y == 0)   
{     
   LCD_Write_Com(0x80 + x);   
    }     
else   
{   
    LCD_Write_Com(0xC0 + x);   
    }         
LCD_Write_Data( Data);  
}


看不懂x y的作用


作者: iceman521    时间: 2013-3-11 19:55
沙发
作者: mingongB    时间: 2013-3-11 21:53
要写字符总得说写在哪里吧,那个是坐标吧




欢迎光临 智能车制作 (http://111.231.132.190/) Powered by Discuz! X3.2