资源简介

该资源是STC12C5A60S2的资料包,该资料包内包含USBCH340驱动、keil编译器、烧录软件、原理图、以及官方参考文档

资源截图

代码片段和文件信息

#include “LCD1602.h“

//****************************************************
//MS延时函数(12M晶振下测试)
//****************************************************
void LCD1602_delay_ms(unsigned int n)
{
unsigned int  ij;
for(i=0;i for(j=0;j<123;j++);
}

//****************************************************
//写指令
//****************************************************
void LCD1602_write_com(unsigned char com)
{
LCD1602_RS = 0;
LCD1602_delay_ms(1);
LCD1602_EN = 1;
LCD1602_PORT = com;
LCD1602_delay_ms(1);
LCD1602_EN = 0;
}

//****************************************************
//写数据
//****************************************************
void LCD1602_write_data(unsigned char dat)
{
LCD1602_RS = 1;
LCD1602_delay_ms(1);
LCD1602_PORT = dat;
LCD1602_EN = 1;
LCD1602_delay_ms(1);
LCD1602_EN = 0;
}

//****************************************************
//连续写字符
//****************************************************
void LCD1602_write_word(unsigned char *s)
{
while(*s>0)
{
LCD1602_write_data(*s);
s++;
}
}

void Init_LCD1602()
{
LCD1602_EN = 0;
LCD1602_RW = 0; //设置为写状态
LCD1602_write_com(0x38); //显示模式设定
LCD1602_write_com(0x0c); //开关显示、光标有无设置、光标闪烁设置
LCD1602_write_com(0x06); //写一个字符后指针加一
LCD1602_write_com(0x01); //清屏指令
}



 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        402  2010-03-19 08:52  Keil C51 V9.00(推荐使用最新)\173绿色软件.url

     文件       1630  2010-05-05 09:22  Keil C51 V9.00(推荐使用最新)\173软件下载.txt

     文件   31827688  2009-10-26 09:41  Keil C51 V9.00(推荐使用最新)\C51V900.exe

     文件     163840  2012-11-05 18:01  Keil C51 V9.00(推荐使用最新)\VDM51.dll

     文件      17920  2008-02-27 17:42  Keil C51 V9.00(推荐使用最新)\注册机\KEIL_Lic.exe

     文件        491  2009-12-13 01:19  Keil C51 V9.00(推荐使用最新)\注册机\注册机使用方法.txt

     文件      10670  2013-04-04 16:45  Keil C51 V9.00(推荐使用最新)\51的0xfd补丁.rar

     目录          0  2013-02-28 11:40  Keil C51 V9.00(推荐使用最新)\注册机

     目录          0  2013-02-28 11:40  Keil C51 V9.00(推荐使用最新)

     文件         40  2013-04-04 16:45  Keil C51 V9.00(推荐使用最新)\修正补丁.txt

----------- ---------  ---------- -----  ----

             32022681                    10


评论

共有 条评论