部分代码:
- #include <reg52.h>
- #include <intrins.h>
- #define uchar unsigned char
- #define uint unsigned int
- uchar code DSY_CODE[]=
- {
- 0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,0x88,0x83,0xc6,0xa1,0x86,0x8e,0x00
- };
- uchar code KeyCodeTable[]=
- {
- 0x11,0x12,0x14,0x18,0x21,0x22,0x24,0x28,0x41,0x42,0x44,0x48,0x81,0x82,0x84,0x88
- };
- void Delay()
- {
- uchar i;
- for(i=0;i<200;i++);
- }
- uchar Keys_Scan()
- {
- uchar sCode,kCode,i,k;
- P1 = 0xf0;
- if((P1&0xf0)!=0xf0)
- {
- Delay();
- if((P1&0xf0)!=0xf0)
- {
- sCode = 0xfe;
- for(k=0;k<4;k++)
- {
- P1 = sCode;
- if((P1&0xf0)!=0xf0)
- {
- kCode = ~P1;
- for(i=0;i<16;i++)
- {
- if(kCode == KeyCodeTable[i])
- return i;
- }
- }
- else
- sCode = _crol_(sCode,1);
- }
- }
- }
- return -1;
- }
复制代码 完整单片机c代码和仿真文件:
4×4键盘矩阵控制条形LED显示.zip
(53.38 KB, 售价: 2 E币)
【必读】版权免责声明
1、本主题所有言论和内容纯属会员个人意见,与本论坛立场无关。2、本站对所发内容真实性、客观性、可用性不做任何保证也不负任何责任,网友之间仅出于学习目的进行交流。3、对提供的数字内容不拥有任何权利,其版权归原著者拥有。请勿将该数字内容进行商业交易、转载等行为,该内容只为学习所提供,使用后发生的一切问题与本站无关。 4、本网站不保证本站提供的下载资源的准确性、安全性和完整性;同时本网站也不承担用户因使用这些下载资源对自己和他人造成任何形式的损失或伤害。 5、本网站所有软件和资料均为网友推荐收集整理而来,仅供学习用途使用,请务必下载后两小时内删除,禁止商用。6、如有侵犯你版权的,请及时联系我们(电子邮箱1370723259@qq.com)指出,本站将立即改正。
|
|