//工程名: MzL1602.ewp
//文件名:main.c
//作者: jwins
//日期: 2007-11-30
//描述: 实现用MzL1602 LCD的显示(字符显示,光标移动等)
// MCU:ATmega32
//参考:
//版本: V1.0.0
//备注:
//*************************************************
#include "iom32.h"
#include ".\LCD_Driver\LCD_Driver_Dis.h"
/*
extern void Delay_ms(unsigned int uTime);
extern void LCD_WriteData(unsigned char Data);
extern void LCD_WriteCommand(unsigned char Command,unsigned char BusyC);
*/
void main()
{
DDRA = 0xff;
DDRC = 0xff;
DDRB = 0xff;
DDRD = 0xff;
PORTD = 0xff;
LCD_Init(); //初始化LCD
while(1)
{
Dis_String(0,0,"Qing_Qiang!");
Delay_ms(100);
Dis_String(0,1,"I_am_Fine.....!");
Delay_ms(100);
LCD_WriteCommand(0x01,1); //清屏操作
声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉
全部0条评论
快来发表一下你的评论吧 !