找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 1723|回复: 0
打印 上一主题 下一主题
收起左侧

LCD1602字符液晶滚动演示程序

[复制链接]
跳转到指定楼层
楼主


单片机源程序如下:
  1. //main.c
  2. /*        名称:LCD1602字符液晶滚动演示程序
  3.         说明:K1~K3按钮分别实现液晶垂直或水平滚动显示及暂停与继续控制。
  4. */
  5. #include<reg51.h>
  6. #include<string.h>
  7. #define uchar unsigned char
  8. #define uint unsigned int
  9. void Initialize_LCD();
  10. void DelayMS(uint ms);
  11. void ShowString(uchar,uchar,uchar *);
  12. sbit K1=P3^0;
  13. sbit K2=P3^1;
  14. sbit K3=P3^2;
  15. uchar code Prompt[]="Press K1 - K3 To Start Demo Prog";
  16. //待滚动显示的信息段落,每行不超过80个字符,共6行
  17. uchar const Line_Count=6;        
  18. uchar code Msg[][80]=
  19. {
  20.         "Many CAD users dismiss schematic capture as a necessary evil in the ",
  21.         "process of creating PCB layout but we have always disputed this point ",
  22.         "of view. With PCB layout now offering automation of both component ",
  23.         "can often be the most time consuming element of the exercise.",
  24.         "And if you use circuit simulation to develop your ideas, ",
  25.         "you are going to spend even more time working on the schematic."
  26. };
  27. //显示缓冲(2行)
  28. uchar Disp_Buffer[32];
  29. //垂直滚动显示
  30. void V_Scroll_Display()
  31. {
  32.         uchar i,j,k=0;
  33.         uchar *p=Msg[0];
  34.         uchar *q=Msg[Line_Count]+strlen(Msg[Line_Count]);
  35.         //以下仅使用显示缓冲的前16字节空间
  36.         while(p<q)
  37.         {
  38.                 for(i=0;i<16&&p<q;i++)
  39.                 {        //消除显示缓冲中待显示行首尾可能出现的空格
  40.                         if((i==0||i==15)&&*p==' ') p++;
  41.                         if(*p!='\0')
  42.                         {
  43.                                 Disp_Buffer[i]=*p++;
  44.                         }
  45.                         else
  46.                         {
  47.                                 if(++k>Line_Count) break;
  48.                                 p=Msg[k];                                        //p指向下一串的首地址
  49.                                 Disp_Buffer[i]=*p++;
  50.                         }
  51.                 }
  52.                 //不足16个字符时空格补充
  53.                 for(j=i;j<16;j++) Disp_Buffer[j]=' ';
  54.                 //垂直滚动显示
  55.                 while(F0) DelayMS(5);
  56.                 ShowString(0,0,"                 ");
  57.                 DelayMS(150);
  58.                 while(F0) DelayMS(5);
  59.                 ShowString(0,1,Disp_Buffer);
  60.                 DelayMS(150);
  61.                 while(F0) DelayMS(5);
  62.                 ShowString(0,0,Disp_Buffer);
  63.                 ShowString(0,1,"                 ");
  64.                 DelayMS(150);
  65.         }
  66.         //最后清屏
  67.         ShowString(0,0,"                 ");
  68.         ShowString(0,1,"                 ");
  69. }
  70. //水平滚动显示
  71. void H_Scroll_Display()
  72. {
  73.         uchar i,j,k=0,L=0;
  74.         uchar *p=Msg[0];
  75.         uchar *q=Msg[Line_Count]+strlen(Msg[Line_Count]);
  76.         //将32个字符的显示缓冲前16个字符设为空格
  77.         for(i=0;i<16;i++) Disp_Buffer[i]=' ';
  78.         while(p<q)
  79.         {
  80.                 //忽略缓冲中首尾可能出现的空格
  81.                 if((i==16||i==31)&&*p==' ') p++;
  82.                 for(i=16;i<32&&p<q;i++)
  83.                 {        
  84.                         if(*p!='\0')
  85.                         {
  86.                                 Disp_Buffer[i]=*p++;
  87.                         }
  88.                         else
  89.                         {
  90.                                 if(++k>Line_Count) break;
  91.                                 p=Msg[k];                                        //p指向下一串的首地址
  92.                                 Disp_Buffer[i]=*p++;
  93.                         }
  94.                 }
  95.                 //不足32个字符时空格补充
  96.                 for(j=i;j<32;j++) Disp_Buffer[j]=' ';
  97.                 //水平滚动显示
  98.                 for(i=0;i<=16;i++)
  99.                 {
  100.                         while(F0) DelayMS(5);
  101.                         ShowString(0,L,Disp_Buffer+i);
  102.                         while(F0) DelayMS(5);
  103.                         DelayMS(20);
  104.                 }
  105.                 L=(L==0)?1:0;                //行号在0,1间交替
  106.                 DelayMS(300);
  107.         }
  108.         //如果显示结束时停留在第0行,则清除第1行的内容
  109.         if(L==1) ShowString(0,1,"                 ");        
  110. }
  111. //外部中断0,由K3控制暂停与继续显示
  112. void EX_INT0() interrupt 0
  113. {
  114.         F0=!F0;                //暂停与继续显示控制标志位
  115. }
  116. //主程序
  117. void main()
  118. {
  119.         uint Count=0;
  120.         IE=0x81;                //允许外部中断0
  121.         IT0=1;                        //下降沿触发
  122.         F0=0;                        //暂停与继续显示控制标志位
  123.         Initialize_LCD();
  124.         ShowString(0,0,Prompt);
  125.         ShowString(0,1,Prompt+16);
  126.         while(1)
  127.         {
  128.                 if(K1==0)
  129.                 {
  130.                         V_Scroll_Display();
  131.                         DelayMS(300);
  132.                 }
  133.                 else
  134.                 if(K2==0)
  135.                 {        
  136.                         H_Scroll_Display();
  137.                         DelayMS(300);        
  138.                 }
  139.         }
  140. }
  141. //LCD1602.c
  142. /*        名称:液晶控制与显示程序
  143.         说明:本程序是通用的1602液晶控制程序。
  144. */
  145. #include<reg51.h>
  146. #include<intrins.h>
  147. #define uchar unsigned char
  148. #define uint unsigned int
  149. sbit RS=P2^0;
  150. sbit RW=P2^1;
  151. sbit EN=P2^2;
  152. //延时
  153. void DelayMS(uint ms)
  154. {
  155.         uchar i;
  156.         while(ms--) for(i=0;i<120;i++);
  157. }
  158. //忙检查
  159. uchar Busy_Check()
  160. {
  161.         uchar LCD_Status;
  162.         RS=0;                                //寄存器选择
  163.         RW=1;                                //读状态寄存器
  164.         EN=1;                                //开始读
  165.         DelayMS(1);
  166.         LCD_Status=P0;
  167.         EN=0;
  168.         return LCD_Status;
  169. }
  170. //写LCD命令
  171. void Write_LCD_Command(uchar cmd)
  172. {
  173.         while((Busy_Check()&0x80)==0x80);        //忙等待
  174.         RS=0;                //选择命令寄存器
  175.         RW=0;                //写
  176.         EN=0;        
  177.         P0=cmd;EN=1;DelayMS(1);EN=0;
  178. }
  179. //发送数据
  180. void Write_LCD_Data(uchar dat)
  181. {
  182.         while((Busy_Check()&0x80)==0x80);        //忙等待
  183.         RS=1;RW=0;EN=0;P0=dat;EN=1;DelayMS(1);EN=0;
  184. }
  185. //LCD初始化
  186. void Initialize_LCD()
  187. {
  188.         Write_LCD_Command(0x38);DelayMS(1);
  189.         Write_LCD_Command(0x01);DelayMS(1);        //清屏
  190.         Write_LCD_Command(0x06);DelayMS(1);        //字符进入模式:屏幕不动,字符后移
  191.         Write_LCD_Command(0x0c);DelayMS(1);        //显示开,光标关
  192. }
  193. //显示字符串
  194. void ShowString(uchar x,uchar y,uchar *str)
  195. {
  196.         uchar i=0;
  197.         if(y==0) Write_LCD_Command(0x80|x);        //设置显示起始位置
  198.         if(y==1) Write_LCD_Command(0xc0|x);
  199.         for(i=0;i<16;i++)                                        //输出字符串
  200.         {
  201.                 Write_LCD_Data(str[i]);
  202.         }
  203. }
复制代码

分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享淘帖 顶 踩
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|51黑电子论坛 |51黑电子论坛6群 QQ 管理员QQ:125739409;技术交流QQ群281945664

Powered by 单片机教程网

快速回复 返回顶部 返回列表