代码搜索:按键扫描
找到约 10,000 项符合「按键扫描」的源代码
代码结果 10,000
www.eeworm.com/read/26985/975889
独立按键查询
www.eeworm.com/read/27197/980436
hex 独立按键.hex
:10080000E4F5A020B00375800620B10375805B205D
:0D081000B20375804F20B3EB75806680E663
:0300000002081DD6
:0C081D00787FE4F6D8FD75810702080022
:00000001FF
www.eeworm.com/read/27197/980437
c 独立按键.c
//独立按键
#include
//定义按键位置
sbit key1=P3^0;
sbit key2=P3^1;
sbit key3=P3^2;
sbit key4=P3^3;
//主程序
void main()
{
P2=0x00; //选中第一个数码管
while(1)
{
if(!key1) //按下
www.eeworm.com/read/27197/980463
hex 按键中断.hex
:0B080C00759055D2AFD2A8D28880FEB4
:03000300020817D9
:040817006390FF32B9
:03000000020800F3
:0C080000787FE4F6D8FD75810702080C33
:00000001FF
www.eeworm.com/read/27197/980464
c 按键中断.c
//按键中断程序
#include
//主程序
void main()
{
P1=0x55; //P1口初始化为01010101B
EA=1; //CPU开总中断
EX0=1; //开外部中断0
IT0=1; //外部中断0为边沿触发方式
while(1)
{
}
}
www.eeworm.com/read/27652/987637
_c 独立按键._c
#include
#include
#define uchar unsigned char
#define uint unsigned int
uchar const table[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d, 0x07,
0x7f,0x6f,0x77,0x7
www.eeworm.com/read/27652/987643
c 独立按键.c
#include
#include
#define uchar unsigned char
#define uint unsigned int
uchar const table[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d, 0x07,
0x7f,0x6f,0x77,0x7
www.eeworm.com/read/27652/987645
o 独立按键.o
XL
H 3 areas B global symbols
M _
S push_xgsetF000 Ref0000
S pop_xgsetF000 Ref0000
S mod8u Ref0000
A text size 128 flags 0
dbfile 独立按键.c
dbfile E:\AVR自编程序\11实验板\9独立按键\独立按键.c
dbfunc e delay 0
www.eeworm.com/read/27652/987651
lis 独立按键.lis
.module _独立按键.c
.area text(rom, con, rel)
0000 .dbfile 独立按键.c
.area data(ram, con, rel)
0000
www.eeworm.com/read/28492/998882