3649|3

59

帖子

0

TA的资源

一粒金砂(初级)

楼主
 

LM6029列显示 [复制链接]

我想在第六列显示一条竖线,但它在第103列显示,请高人给看看问题出在哪,程序如下:
#include
#include
#define uchar unsigned char
#define uint unsigned int
#define LcdDataPort P2
sbit _WR=P1^1;
sbit RS=P1^2;
sbit _RES=P1^3;
sbit _CS1=P1^4;
void Delay(uint Delx)     //延时
{
        uint i=0;
        while(i         i++;
}
void LcdCommand(uchar Com)         //写指令
{
        RS=0;
        LcdDataPort=Com;
        _nop_();_nop_();_nop_();
        _WR=0;
        _nop_();_nop_();_nop_();
        _WR=1;
}
void LcdDataWrite(uchar Data)     //写数据
{
        RS=1;
        LcdDataPort=Data;
        _nop_();_nop_();_nop_();
        _WR=0;
        _nop_();_nop_();_nop_();
        _WR=1;
}
void Initialize()              //初始化
{
        _CS1=0;
        _RES=0;
        Delay(1000);
        _RES=1;
       
        LcdCommand(0xa0);
        LcdCommand(0xc8);
        LcdCommand(0xa2);
        LcdCommand(0x2f);
        LcdCommand(0x81);
        LcdCommand(0x29);
        LcdCommand(0x40);
        LcdCommand(0xaf);
}
void SetPage(uchar Page)          //页位置
{
        Page=Page&0x0f;
        Page=Page|0xb0;
        LcdCommand(Page);
}
void SetColumn(uchar Column)      //列位置
{
        uchar temp;
        temp=Column;                                                                                                                                                                                                                                               
        Column=Column&0x0f;
        Column=Column|0x00;
        LcdCommand(Column);
        temp=temp>>4;
        Column=Column&0x0f;
        Column=Column|0x10;
        LcdCommand(Column);
}
void ClearScr()              //清屏
{
        uchar i,j;
        for(i=0;i<8;i++)
        {
                SetColumn(0);
                SetPage(i);
                for(j=0;j<128;j++)
                LcdDataWrite(0x00);
        }
}
void Display(uchar Page,uchar Column)   //显示
{
        uchar i;
        for(i=0;i<8;i++)
        {
                SetPage(Page+i);
                SetColumn(Column);
                LcdDataWrite(0xff);
        }
}
void main()                 //主函数
{       
        Initialize();
        Delay(1000);
        ClearScr();
        Display(0,6);
        while(1)
        {};
}

最新回复

Column=Column&0x0f; Column=Column|0x00;    LcdCommand(Column); temp=temp>>4;         Column=Column&0x0f; //哦,我大意啦,改成Column=temp&0x0f就行啦 Column=Column|0x10; LcdCommand(Column);   详情 回复 发表于 2009-11-3 19:19
点赞 关注

回复
举报

79

帖子

0

TA的资源

一粒金砂(初级)

沙发
 
1。代码部分
Column=Column&0x0f;
Column=Column|0x00;   // 没有用的语句。
LcdCommand(Column);
temp=temp>>4;         // 为了确保高四位为零,请增加 temp = temp & 0x0f;
Column=Column&0x0f;
Column=Column|0x10;
LcdCommand(Column);
2。初始化部分最好每条指令后增加延时ms级时间。等待电平稳定
3。每次写之前,增加读忙标志字,确保空闲。
 
 

回复

75

帖子

0

TA的资源

一粒金砂(初级)

板凳
 
引用 1 楼 duojinian 的回复:
1。代码部分
Column=Column&0x0f;
Column=Column|0x00;? // 没有用的语句。
LcdCommand(Column);
temp=temp>>4;? ? ? ? // 为了确保高四位为零,请增加 temp = temp & 0x0f;
Column=Column&0x0f;
Column=Column|0x10;
LcdCommand(Column);
2。初始化部分最好每条指令后增加延时ms级时间。等待电平稳定
3。每次写之前,增加读忙标志字,确保空闲。

谢啦!受教了
 
 
 

回复

67

帖子

0

TA的资源

一粒金砂(初级)

4
 
Column=Column&0x0f;
Column=Column|0x00;   
LcdCommand(Column);
temp=temp>>4;        
Column=Column&0x0f; //哦,我大意啦,改成Column=temp&0x0f就行啦
Column=Column|0x10;
LcdCommand(Column);

 
 
 

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

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/10 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表