msp430g2553:双线12864库程序
扫描二维码
随时随地手机看文章
(Display)msp430g2553:双线12864库程序
**************************************************************************************************
LCD12864.H
****************************************************************
LCD12864 2线程序
rs (CS) 已经外接高电平
rw (SID) P2.0
en (SCLK) P2.1
PSB 已经外接低电平
RST 已经外接高电平
硬件电路,3号引脚接的10K电阻与地间的阻值一般在8.8k-9.5k
(一个电源+,两根共地线)
****************************************************************
#ifndef __LCD12864_H__
#define __LCD12864_H__
#include"msp430g2553.h"
********************************
引脚定义
********************************
#define SID_0 P2OUT &= ~BIT0
#define SID_1 P2OUT |= BIT0
#define SCLK_0 P2OUT &= ~BIT1
#define SCLK_1 P2OUT |= BIT1
******************************
命令字符定义
******************************
#define First_Line 0x80
#define Second_Line 0x90
#define Third_Line 0x88
#define Fourth_Line 0x98
************************************************************
函数定义
************************************************************
extern void LCD12864_Port_Init(void);
extern void LCD12864_write_one_byte(unsigned int byte);
extern void LCD12864_write_command(unsigned int com);
extern void LCD12864_write_data(unsigned int dat);
extern void LCD12864_Init(void);
extern void LCD12864_write_string(char adress,char *str);
#endif
**************************************************************************************************
**************************************************************************************************
LCD12864.C
#include"LCD12864.H"
****************************
端口初始化
****************************
void LCD12864_Port_Init(void)
{
P2DIR=BIT0+BIT1;
}
****************************************
传送字节函数:
byte型数据,1:SID传送一个高电平
0:SID传送一个低电平
****************************************
void LCD12864_write_one_byte(unsigned int byte)
{
unsigned int i;
for(i=0;i<8;i++)
{
if( byte & 0x80 )
SID_1;
else
SID_0;
SCLK_1;
__delay_cycles(10);
SCLK_0;
byte<<=1;
__delay_cycles(10);
}
}
********************************************************************************
2线128*64数据传送:
先判断是传送命令还是传送数据
1.第一个字节:前五个必须是高电平,对12864进行双线传送初始化,
第六个电平是RW,第七个是RS,第八个必须是低电平0。
( 1 1 1 11 RW RS 0 )
(这是为了与8跟线的命令对应,数据都是通过SID数据线进行传输,
CS始终是高电平)。
RWRSbyte
写命令:000xf8
写数据:010xfa
读忙:100xfc
读数据:110xfe
然后开始传送数据
2.第二个字节:高四位是要传送数据的高四位,低四位全为0.(D7 D6 D5 D4 0 0 0 0)
3.第三个字节:高四位是要传送数据的低四位,低四位全是0.(D3 D2 D1 D0 0 0 0 0)
数据*命令传送完毕
********************************************************************************
******************************
写命令函数
******************************
void LCD12864_write_command(unsigned int com)
{
unsigned int com_init=0xf8;
unsigned int com_h,com_l;
com_h = com & 0xf0;
com_l = (com<<4) & 0xf0;
LCD12864_write_one_byte(com_init);
LCD12864_write_one_byte(com_h);
LCD12864_write_one_byte(com_l);
}
*****************************
写数据函数
*****************************
void LCD12864_write_data(unsigned int dat)
{
unsigned int dat_init=0xfa;
unsigned int dat_h,dat_l;
dat_h = dat & 0xf0;
dat_l = (dat<<4) & 0xf0;
LCD12864_write_one_byte(dat_init);
LCD12864_write_one_byte(dat_h);
LCD12864_write_one_byte(dat_l);
}
********************************************************************************
初始化函数(一些必须要设置的地方)
commandfunction
0x30基本指令集
0x01清屏
0x06传送一个字符,光标右移,AC+1,显示不移动
0x0c显示开
0x0f显示开,游标开,游标闪动
********************************************************************************
void LCD12864_Init(void)
{
LCD12864_write_command(0x30);
LCD12864_write_command(0x01);
LCD12864_write_command(0x06);
LCD12864_write_command(0x0f);
}
**************************************************
字符串传送函数
设定字符串的首位置,然后对写入的字符串进行显示
**************************************************
void LCD12864_write_string(char adress,char *str)
{
__delay_cycles(1000);
LCD12864_write_command(adress);
while(*str!='