应用案例
#include
__CONFIG(0x1832);
//芯片配置字,看门狗关,上电延时开,掉电检测关,低压编程关,加密,4M晶体HS振荡
#define rs RA5 //定义LCD的数据/命令控制口
#define rw RA4 //定义LCD的读/写控制口
#define e RA3 //定义LCD的使能口
#define psb RA2 //定义通信方式控制口
#define rst RA0 //定义复位口
#define nop() asm("nop") //定义nop()函数
//深圳乾龙盛电子
const unsigned char TAB1A[ ]={0xC9,0xEE,0xDB,0xDA,0xC7,0xAC,0xC1,0xFA,0xCA,0xA2,0xB5,0xE7,0xD7,0xD3};
//WWW.PIC16.COM
const unsigned char TAB1B[ ]={' ', ' ', 'W', 'W', 'W', '.', 'P', 'I', 'C', '1','6', '.', 'C', 'O', 'M', ' '};
//TEL0755-28187975
const unsigned char TAB1C[ ]={'T', 'E', 'L' ,'0' ,'7', '5' ,'5','-', '2', '8','1', '8' ,'7','9' ,'7','5'};
//FAX0755-28187976
const unsigned char TAB1D[ ]={'F', 'A', 'X', '0', '7', '5', '5', '-','2', '8','1', '8', '7', '9', '7', '6'};
unsigned int lcd_x; //定义LCD页地址寄存器
unsigned int lcd_y; //定义LCD列地址寄存器
bit busy; //定义LCD忙标志位
void init(); //申明I/O口设置函数
void lcd_init(); //申明LCD初始化函数
void clear_p(); //申明清屏函数
void han_wr2a(); //申明显示公司名称函数
void han_wr2b(); //申明显示公司web函数
void han_wr2c(); //申明显示公司tel函数
void han_wr2d(); //申明显示公司fax函数
void wr_zb(); //申明有关显示设置函数
void flash(); //申明设置LCD显示闪烁函数
void qushu(int counts,const unsigned char *ps); //申明查表获取显示数据
void send_d(unsigned char x); //申明送一字节数据显示函数
void send_i(unsigned char x); //申明送一字节控制命令函数
void chk_busy(); //申明检测LCD是否工作繁忙函数
void delay(); //申明延时函数1,供各命令之间的延时和决定显示快慢
void delay1(); //申明延时函数2,用以决定显示闪烁快慢
//-------------------------------------------
//主程序
void main()
{
while(1)
{
init(); //调用I/O口设置函数
lcd_init(); //调用LCD初始化函数
clear_p(); //调用清屏函数
han_wr2a(); //调用显示公司名称函数
han_wr2b(); //调用显示公司web函数
han_wr2c(); //调用显示公司tel函数
han_wr2d(); //申明显示公司fax函数
delay(); //延长显示一段时间
flash(); //调用显示闪烁函数
clear_p(); //调用清屏函数
}
}
//-------------------------------------------
//I/O口设置函数
void init()
{
TRISA=0X00; //设置A口为输出
TRISD=0X00; //设置D口为输出
ADCON1=0X06; //设置A口为普通I/O口
}
//-------------------------------------------
//LCD初始化函数
void lcd_init()
{
rst=0; //复位LCD
delay(); //保证复位所需要的时间
rst=1; //恢复LCD正常工作
nop();
psb=1; //设置LCD为8位并口通信
send_i(0x30); //基本指令操作
send_i(0x01); //清除显示
send_i(0x06); //指定在写入或读取时,光标的移动方向
send_i(0x0c); //开显示,关光标,不闪烁
}
//-------------------------------------------
//显示公司名称函数
void han_wr2a()
{
send_i(0x81); //设置显示位置:第一行
qushu(0xe,TAB1A); //调用取数函数,共14个数据,保存在数组TAB1A里
}
//-------------------------------------------
//显示公司web函数
void han_wr2b()
{
send_i(0x90); //设置显示位置:第二行
qushu(0x10,TAB1B); //调用取数函数,共16个数据,保存在数组TAB1B里
}
//-------------------------------------------
//显示公司tel函数
void han_wr2c()
{
send_i(0x88); //设置显示位置:第三行
qushu(0X10,TAB1C); //调用取数函数,共16个数据,保存在数组TAB1C里
}
//-------------------------------------------
//显示公司fax函数
void han_wr2d()
{
send_i(0x98); //设置显示位置:第四行
qushu(0X10,TAB1D); //调用取数函数,共16个数据,保存在数组TAB1D里
}
//有关显示设置函数
void wr_zb()
{
send_i(lcd_y);
send_i(lcd_x);
}
//-------------------------------------------
//显示闪烁函数
void flash()
{
send_i(0x08); //关显示
delay1(); //延长一定时间
send_i(0x0c); //开显示
delay1();
delay1(); //延长关显示两倍的时间
send_i(0x08); //关显示
delay1();
send_i(0x0c); //开显示
delay1();
delay1();
send_i(0x08); //关显示
delay1();
send_i(0x0c); //开显示
delay1();
delay1();
}
//-------------------------------------------
//清屏函数
void clear_p()
{
send_i(0x1); //清除所有显示
send_i(0x34); //扩展指令操作
send_i(0x30); //基本指令操作
}
//------------------------------------------
//查表函数
void qushu(int counts,const unsigned char *ps)
{
int i; //定义循环变量
for(i=counts;i>0;i--) //循环counts次
{
send_d(*ps); //查表取数并调用显示一个字节数据函数送显示
delay(); //延长一定时间,确保能看到数据一个个的显示出来
ps++; //取下一个数据
}
}
//-------------------------------------------
//显示一字节数据函数
void send_d(unsigned char x)
{
chk_busy(); //检测LCD是否工作繁忙
rs=1; //设置该字节数据是显示数据
rw=0; //设置该次操作为写
PORTD=x; //送数据口PORTD
e=1; //使能
nop();
nop();
nop();
e=0; //禁止
}
//--------------------------------------------
//送一字节命令代码函数
void send_i(unsigned char x)
{
chk_busy(); //检测LCD是否工作繁忙
rs=0; //设置该字节数据为控制命令
rw=0; //设置此次操作为写
PORTD=x; //送数据口PORTD
e=1; //使能
nop();
nop();
nop();
e=0; //禁止
}
//-------------------------------------------
//检测LCD是否工作繁忙
void chk_busy()
{
busy=1; //先置位繁忙标志位
TRISD=0XFF; //更改通信为输入
rs=0; //设置该字节数据为命令代码
rw=1; //设置此次操作为读
while(busy)
{
nop();
nop();
nop();
e=1; //使能
nop();
nop();
nop();
if(!RD7) busy=0; //检测LCD是否工作繁忙
nop();
nop();
nop();
e=0; //禁止
}
e=0; //禁止
TRISD=0X00; //恢复通信为输出
}
//-------------------------------------------
//延时函数
void delay()
{
int i;
for(i=0;i<5000;i++)
{;}
}
//-------------------------------------------
//延时函数1
void delay1()
{
int i;
for(i=0;i<10;i++)
{
delay(); //调用延时函数
全部0条评论
快来发表一下你的评论吧 !