代码搜索:Key1

找到约 1,573 项符合「Key1」的源代码

代码结果 1,573
www.eeworm.com/read/395508/8170516

c 3cycle and 1blink.c

//3路流水1路闪动 火焰 080331 #include #define uchar unsigned char sbit Key1=P1^0; sfr P1M0=0X91; sfr P1M1=0X92; sbit Out1=P1^7; sbit Out2=P1^6; sbit Out3=P1^5; sbit Out4=P1^4;
www.eeworm.com/read/388738/8579893

c lesson5_3.c

#include #define uint unsigned int #define uchar unsigned char sbit dula=P2^6; sbit wela=P2^7; sbit key1=P3^4; uchar code table[]={ 0x3f,0x06,0x5b,0x4f, 0x66,0x6d,0x7d,0x07, 0x7f,0x6
www.eeworm.com/read/431357/8686516

c lesson5_3.c

#include #define uint unsigned int #define uchar unsigned char sbit dula=P2^6; sbit wela=P2^7; sbit key1=P3^4; uchar code table[]={ 0x3f,0x06,0x5b,0x4f, 0x66,0x6d,0x7d,0x07, 0x7f,0x6
www.eeworm.com/read/387106/8706385

c kayscan.c

#include #define uint unsigned int #define uchar unsigned char sbit duan=P2^6; sbit wei=P2^7; sbit key1=P3^4; uchar code table[]={ 0x3f,0x06,0x5b,0x4f, 0x66,0x6d,0x7d,0x07, 0x7f,0x6f
www.eeworm.com/read/375368/9362299

c lesson5_3.c

#include #define uint unsigned int #define uchar unsigned char sbit dula=P2^6; sbit wela=P2^7; sbit key1=P3^4; uchar code table[]={ 0x3f,0x06,0x5b,0x4f, 0x66,0x6d,0x7d,0x07, 0x7f,0x6
www.eeworm.com/read/467850/7002163

c motorspeedcontrol.c

/* 1、学习目的:利用定时器产生PWM,了解原理和使用方法 2、硬件要求:直流电机 定时器 3、试验现象:按键调速,PWM部分显示速度档位,电机根据档位调节速度 这个需要把电机驱动输入端和PWM端连接起来 */ #include sbit KEY1 = P3^1; sbit PWM = P1^5; unsigned char CYCLE; //定义周期
www.eeworm.com/read/356730/7113419

c lesson5_3.c

#include #define uint unsigned int #define uchar unsigned char sbit dula=P2^6; sbit wela=P2^7; sbit key1=P3^4; uchar code table[]={ 0x3f,0x06,0x5b,0x4f, 0x66,0x6d,0x7d,0x07, 0x7f,0x6
www.eeworm.com/read/352774/7131590

c lesson5_3.c

#include #define uint unsigned int #define uchar unsigned char sbit dula=P2^6; sbit wela=P2^7; sbit key1=P3^4; uchar code table[]={ 0x3f,0x06,0x5b,0x4f, 0x66,0x6d,0x7d,0x07, 0x7f,0x6
www.eeworm.com/read/462682/7198279

c 抢答器.c

/* 1、试验目的:了解按键的扫描原理 2、实现现象:同时按键抢答,先按的键有效,其他按键锁死 复位后重新开始抢答 3、硬件要求:按键 LED灯 */ #include sbit key1=P3^0;//定义按键位置 需要切换到独立按键模式 sbit key2=P3^1; sbit key3=P3^2; sbit key4=P3^3
www.eeworm.com/read/456555/7345352

c key2.c

//功能:按一下KEY1(P1.24),L1灯亮 //按一下KEY2(P1.25),L2灯亮 //按一下KEY3(P1.26),L3灯亮 //按一下KEY4(P1.27),L4灯亮 #include unsigned char key_value; unsigned char key(void); void delay(unsigned int z); int