• 大小: 0.03M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-03-27
  • 语言: 其他
  • 标签: 其他  

资源简介


本程序针对HUB12接口设计的程序! 可单键控制循环显示

资源截图

代码片段和文件信息

#include 
#include “font.h“

sbit Key=P3^4;
sbit LOE=P1^0;
sbit LA=P1^1;
sbit LB=P1^2;
sbit LClk=P1^3;
sbit LSCLK=P1^4;
sbit LR=P1^5;

//按键值
unsigned char KeyValue=0x01;
//当前显示索引值
unsigned char FontsIndex=0x00;

void TimerInit(void);
void KeyProc(unsigned char KeyValue);
void WriteData(unsigned char Value);
void Delayms(unsigned char Value);

/***********主函数**************/
void main()
{
TimerInit();
IE=0x82; //打开中断
while(0x01)
{
if(Key!=KeyValue)
{
Delayms(0x0A);
if(Key!=KeyValue)
{
KeyValue=Key;
KeyProc(KeyValue);
}
}
}
}
/*********************************/

/**********定时器初始化***********/
void TimerInit(void)
{
TMOD=0x01; //定时器0工作于16模式
TH0=0xEE;  //0x4C使用定时器0方式111.0592MHz晶振5ms中断一次
TL0=0x00; //0x00
TR0=0x01; //开始定时器0
}
/*********************************/

/************按键处理过程***********/
void KeyProc(unsigned char KeyValue)
{
if(!KeyValue) FontsIndex=(FontsIndex<0x0B)?(FontsInde

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

     文件       7017  2016-01-19 20:41  SourceCode\Bin\LedScreen

     文件       4095  2016-01-19 20:41  SourceCode\Bin\LedScreen.hex

     文件         82  2016-01-19 20:41  SourceCode\Bin\LedScreen.lnp

     文件      12871  2016-01-19 20:41  SourceCode\Bin\LedScreen.plg

     文件       7975  2016-01-19 20:41  SourceCode\Bin\main.obj

     文件       7569  2016-01-19 20:41  SourceCode\LedScreen.m51

     文件       3002  2016-01-16 21:09  SourceCode\LedScreen.plg

    .......     67749  2016-01-19 20:41  SourceCode\LedScreen.uvgui.罗钢

    .......     67749  2016-01-19 20:41  SourceCode\LedScreen.uvgui_罗钢.bak

    .......      5195  2016-01-19 20:41  SourceCode\LedScreen.uvopt

    .......     13327  2016-01-16 19:08  SourceCode\LedScreen.uvproj

    .......      5197  2016-01-19 20:41  SourceCode\LedScreen_uvopt.bak

    .......         0  2016-01-16 19:06  SourceCode\LedScreen_uvproj.bak

     文件       5300  2016-01-19 20:41  SourceCode\main.lst

     文件       4316  2016-01-19 20:39  SourceCode\User\font.h

     文件       2600  2016-01-19 20:41  SourceCode\User\main.c

     目录          0  2016-01-19 20:41  SourceCode\Bin

     目录          0  2016-01-19 20:41  SourceCode\User

     目录          0  2016-01-19 20:41  SourceCode

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

               214044                    19


评论

共有 条评论