标题: 为什么仿真液晶无显示 [打印本页]

作者: 一片一城    时间: 2021-10-15 12:00
标题: 为什么仿真液晶无显示
请教了,不知错在哪里,仿真时液晶就是啥都没有。谢谢。



作者: 一片一城    时间: 2021-10-15 12:01
上图的代码

#include<reg52.h>
#include<string.h>
#define uchar unsigned char
#define uint unsigned int
void Initialize_LCD();
void DelayMS(uint ms);
void ShowString(uchar,uchar,uchar *);
sbit K1=P3^0;
sbit K2=P3^1;
sbit K3=P3^2;
uchar code Prompt[]="Press K1 - K3 To Start Demo Prog";
//待滚动显示的信息段落,每行不超过80个字符,共6行
uchar const Line_Count=6;       
uchar code Msg[][80]=
{
        "Many CAD users dismiss schematic capture as a necessary evil in the ",
        "process of creating PCB layout but we have always disputed this point ",
        "of view. With PCB layout now offering automation of both component ",
        "can often be the most time consuming element of the exercise.",
        "And if you use circuit simulation to develop your ideas, ",
        "you are going to spend even more time working on the schematic."
};
//显示缓冲(2行)
uchar Disp_Buffer[32];

void V_Scroll_Display() //垂直滚动显示
{
        uchar i,j,k=0;
        uchar *p=Msg[0];
        uchar *q=Msg[Line_Count]+strlen(Msg[Line_Count]);
        //以下仅使用显示缓冲的前16字节空间
        while(p<q)
        {
                for(i=0;i<16&&p<q;i++)
                {        //消除显示缓冲中待显示行首尾可能出现的空格
                        if((i==0||i==15)&&*p==' ') p++;
                        if(*p!='\0')
                        {
                                Disp_Buffer[i]=*p++;
                        }
                        else
                        {
                                if(++k>Line_Count) break;
                                p=Msg[k];                                        //p指向下一串的首地址
                                Disp_Buffer[i]=*p++;
                        }
                }
                //不足16个字符时空格补充
                for(j=i;j<16;j++) Disp_Buffer[j]=' ';
                //垂直滚动显示
                while(F0) DelayMS(5);
                ShowString(0,0,"                 ");
                DelayMS(150);
                while(F0) DelayMS(5);
                ShowString(0,1,Disp_Buffer);
                DelayMS(150);
                while(F0) DelayMS(5);
                ShowString(0,0,Disp_Buffer);
                ShowString(0,1,"                 ");
                DelayMS(150);
        }
        //最后清屏
        ShowString(0,0,"                 ");
        ShowString(0,1,"                 ");
}

void H_Scroll_Display()//水平滚动显示
{
        uchar i,j,k=0,L=0;
        uchar *p=Msg[0];
        uchar *q=Msg[Line_Count]+strlen(Msg[Line_Count]);
        //将32个字符的显示缓冲前16个字符设为空格
        for(i=0;i<16;i++) Disp_Buffer[i]=' ';
        while(p<q)
        {
                //忽略缓冲中首尾可能出现的空格
                if((i==16||i==31)&&*p==' ') p++;
                for(i=16;i<32&&p<q;i++)
                {       
                        if(*p!='\0')
                        {
                                Disp_Buffer[i]=*p++;
                        }
                        else
                        {
                                if(++k>Line_Count) break;
                                p=Msg[k];                                        //p指向下一串的首地址
                                Disp_Buffer[i]=*p++;
                        }
                }
                //不足32个字符时空格补充
                for(j=i;j<32;j++) Disp_Buffer[j]=' ';
                //水平滚动显示
                for(i=0;i<=16;i++)
                {
                        while(F0) DelayMS(5);
                        ShowString(0,L,Disp_Buffer+i);
                        while(F0) DelayMS(5);
                        DelayMS(20);
                }
                L=(L==0)?1:0;                //行号在0,1间交替
                DelayMS(300);
        }
        //如果显示结束时停留在第0行,则清除第1行的内容
        if(L==1) ShowString(0,1,"                 ");       
}

void EX_INT0() interrupt 0//外部中断0,由K3控制暂停与继续显示
{
  F0=!F0;                //暂停与继续显示控制标志位
}

void main()
{
        uint Count=0;
        IE=0x81;                //允许外部中断0
        IT0=1;                        //下降沿触发
        F0=0;                        //暂停与继续显示控制标志位
        Initialize_LCD();
        ShowString(0,0,Prompt);
        ShowString(0,1,Prompt+16);
        while(1)
        {
                if(K1==0)
                {
                        V_Scroll_Display();
                        DelayMS(300);
                }
                else
                if(K2==0)
                {       
                        H_Scroll_Display();
                        DelayMS(300);       
                }
        }
}
作者: munuc_w    时间: 2021-10-16 11:29
仿真中用到的器件要有相应的仿真数学模型,有的器件缺这个模型,就不能仿真,可以换一个试试。
作者: Lxy18    时间: 2021-10-16 12:11
楼主,仿真图中排阻网络标号错位,lcd不确定是否有错。
另外,程序中没有看到lcd控制引脚的定义。
以下是我仿真的lcd1602和排阻接法,可以参考。

自用的lcd1602驱动奉上,仅供参考
Lcd1602驱动.zip (1.67 KB, 下载次数: 2)






欢迎光临 (http://www.51hei.com/bbs/) Powered by Discuz! X3.1