LCD1602移动
时间:10-02
整理:3721RD
点击:
驱动就不写了
#include<reg51.h>
#include<LCD1602.c>
unsigned char str[] = "agf tefaw";
void delay(unsigned int x)
{
while(x--);
}
void main()
{
unsigned char i;
InitLcd1602(); //初始化
LcdShowStr(0,0,str,16);//(x,y,显示的字符串,显示字符个数)
for(i = 0;i< 13;i++)
{
LcdWriteCmd(0x18);//写入命令
delay(6666);
}
}
0x10 字符不动光标左移一个位置
0x14 字符不动光标右移一个位置
0x18 字符和光标一起左移一个位置
0x1c 字符和光标一起右移一个位置
#include<reg51.h>
#include<LCD1602.c>
unsigned char str[] = "agf tefaw";
void delay(unsigned int x)
{
while(x--);
}
void main()
{
unsigned char i;
InitLcd1602(); //初始化
LcdShowStr(0,0,str,16);//(x,y,显示的字符串,显示字符个数)
for(i = 0;i< 13;i++)
{
LcdWriteCmd(0x18);//写入命令
delay(6666);
}
}
0x10 字符不动光标左移一个位置
0x14 字符不动光标右移一个位置
0x18 字符和光标一起左移一个位置
0x1c 字符和光标一起右移一个位置