微波EDA网,见证研发工程师的成长!
首页 > 研发问答 > 嵌入式设计讨论 > MCU和单片机设计讨论 > LCD1602移动

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   字符和光标一起右移一个位置

Copyright © 2017-2020 微波EDA网 版权所有

网站地图

Top