部分源码如下:完整源码见附件
程序.rar
(275.77 KB, 售价: 1 E币)
仿真.zip
(27.74 KB, 售价: 1 E币)
- #include <REG52.H>
- #include "SoundPlay.h"
- unsigned char RunMode;
- //**********************************System Fuction*************************************************
- void Delay1ms(unsigned int count)
- {
- unsigned int i,j;
- for(i=0;i<count;i++)
- for(j=0;j<120;j++);
- }
- unsigned char code LEDDisplayCode[] = { 0xC0,0xF9,0xA4,0xB0,0x99,0x92,0x82,0xF8, //0~7
- 0x80,0x90,0x88,0x83,0xC6,0xA1,0x86,0x8E,0xFF};
- void Display(unsigned char Value)
- {
- P3 = LEDDisplayCode[Value];
- }
- void LEDFlash(unsigned char Count)
- {
- unsigned char i;
- bit Flag;
- for(i = 0; i<Count;i++)
- {
- Flag = !Flag;
- if(Flag)
- Display(RunMode);
- else
- Display(0x10);
- Delay1ms(100);
- }
- Display(RunMode);
- }
- unsigned char GetKey(void)
- {
- unsigned char KeyTemp,CheckValue,Key = 0x00;
- CheckValue = P2&0x32;
- if(CheckValue==0x32)
- return 0x00;
-
- Delay1ms(10);
- KeyTemp = P2&0x32;
- if(KeyTemp==CheckValue)
- return 0x00;
- if(!(CheckValue&0x02))
- Key|=0x01;
- if(!(CheckValue&0x10))
- Key|=0x02;
- if(!(CheckValue&0x20))
- Key|=0x04;
- return Key;
- }
- unsigned int Timer0Count,SystemSpeed,SystemSpeedIndex;
- void InitialTimer2(void)
- {
- T2CON = 0x00; //16 Bit Auto-Reload Mode
- TH2 = RCAP2H = 0xFC; //重装值,初始值 TL2 = RCAP2L = 0x18;
- ET2=1; //定时器 2 中断允许
- TR2 = 1; //定时器 2 启动
- EA=1;
- }
- unsigned int code SpeedCode[]={ 1, 2, 3, 5, 8, 10, 14, 17, 20, 30,
- 40, 50, 60, 70, 80, 90, 100, 120, 140, 160,
-
复制代码
【必读】版权免责声明
1、本主题所有言论和内容纯属会员个人意见,与本论坛立场无关。2、本站对所发内容真实性、客观性、可用性不做任何保证也不负任何责任,网友之间仅出于学习目的进行交流。3、对提供的数字内容不拥有任何权利,其版权归原著者拥有。请勿将该数字内容进行商业交易、转载等行为,该内容只为学习所提供,使用后发生的一切问题与本站无关。 4、本网站不保证本站提供的下载资源的准确性、安全性和完整性;同时本网站也不承担用户因使用这些下载资源对自己和他人造成任何形式的损失或伤害。 5、本网站所有软件和资料均为网友推荐收集整理而来,仅供学习用途使用,请务必下载后两小时内删除,禁止商用。6、如有侵犯你版权的,请及时联系我们(电子邮箱1370723259@qq.com)指出,本站将立即改正。
|
|