pic單片機(jī)兩個(gè)IO口四線驅(qū)動(dòng)LCD1602
#include
#include
#include "delay.h"
#include "delay.c"
//熔絲配置***********************************************************
__CONFIG(PROTECT & CPD & BOREN & MCLRDIS & PWRTEN & WDTDIS & INTIO);
//端口定義***********************************************************
#define Port GPIO //端口址址
#define Tris TRISIO //方向設(shè)置
//腳位定義***********************************************************
#define Dat GPIO4 //數(shù)據(jù)引腳
#define Clk GPIO5 //時(shí)鐘引腳
//顯示字符***********************************************************
unsigned char TopChar[] = {"www.pic16.com "}; //
unsigned char BotChar[] = {"ivws "}; //
//*******************************************************************
//函數(shù)名稱:PortInit();
//輸入?yún)?shù):無(wú)
//輸出參數(shù):無(wú)
//功能描述:端口設(shè)置
//建造日期:2008.12.08
//********************************************************************
void PortInit(void)
{
Port = 0x00; //端口設(shè)置
Tris = 0x00;
}
//*******************************************************************
//函數(shù)名稱:ConInit();
//輸入?yún)?shù):無(wú)
//輸出參數(shù):無(wú)
//功能描述:定時(shí)器設(shè)置
//建造日期:2008.12.08
//*******************************************************************
void ConInit(void)
{
OPTION = 0x00; //允許上拉
CMCON = 0x07; //關(guān)比較器
}
//*******************************************************************
//函數(shù)名稱: TxLs164(data);
//輸入?yún)?shù):串行數(shù)據(jù)
//輸出參數(shù):無(wú)
//功能描述:串行發(fā)送數(shù)據(jù)
//建造日期:2008.12.08
//*******************************************************************
void TxLs164(unsigned chardata)
{
unsigned char i;
i = 6; //送出六位
do
{
Dat = 0; //數(shù)據(jù)清零
Clk = 1; //時(shí)鐘置位
Clk = 0; //時(shí)鐘清零
}
while (--i); //循環(huán)發(fā)送
i = 6; //送出六位
do
{
Dat = 0; //先高后低
if (data & 0x20) Dat = 1;
Clk = 1; //時(shí)鐘置位
data<<= 1; //數(shù)據(jù)左移
Clk = 0; //時(shí)鐘清零
}
while (--i); //循環(huán)發(fā)送
}
//*******************************************************************
//函數(shù)名稱: WriteData(data, rs);
//輸入?yún)?shù):待寫數(shù)據(jù), 0 = 指令,1 = 數(shù)據(jù)
//輸出參數(shù):無(wú)
//功能描述:數(shù)據(jù)寫入LCD
//建造日期:2008.12.08
//*******************************************************************
void WriteData(unsigned char data, unsigned char rs)
{
unsigned char temp;
temp =data>> 4; //取高四位
temp |= 1 << 5; //使用置位
if (rs & 0x01) temp |= 1 << 4; //數(shù)據(jù)選擇
TxLs164(temp); //寫高四位
Dat = 1; //使能下沿
Dat = 0;
DelayUs(50); //延時(shí)等待
temp =data& 0x0f; //取低四位
temp |= 1 << 5; //使用置位
if (rs & 0x01) temp |= 1 << 4; //數(shù)據(jù)選擇
TxLs164(temp); //寫高四位
Dat = 1; //使能下沿
Dat = 0;
DelayUs(50); //延時(shí)等待
}
//*******************************************************************
//函數(shù)名稱:AddrSite(x, y);
//輸入?yún)?shù):坐標(biāo)參數(shù)
//輸出參數(shù):無(wú)
//功能描述:設(shè)置顯示地址
//建造日期:2008.12.08
//*******************************************************************
void AddrSite(unsigned char x, unsigned char y)
{
x &= 0x3f; //截取地址
if (y == 0)
{
WriteData((0x80 | x), 0); //首行地址
}
else
{
WriteData((0xc0 | x), 0); //次行地址
}
}
//*******************************************************************
//函數(shù)名稱:PrintChar(*s);
//輸入?yún)?shù):緩沖區(qū)首址
//輸出參數(shù):無(wú)
//功能描述:字符串輸出顯示
//建造日期:2008.12.08
//*******************************************************************
void PrintChar(unsigned char *s)
{
while(*s)
{
WriteData(*s, 1); //字符數(shù)據(jù)
s++; //下個(gè)字符
}
}
評(píng)論