代码搜索:Key
找到约 10,000 项符合「Key」的源代码
代码结果 10,000
www.eeworm.com/read/466008/7042955
c key.c
//***************************************************************************************************
//Chinese Academy of Sciences, Institute of Automation
//File Name: Key.c
//Description: Test
www.eeworm.com/read/466057/7043613
asm key.asm
;This is "THE DIGITAL CODE LOCK" Program which takes a 4-digit password
;from the user and compares it with the already saved password.
;If the password entered is correct then the LED GLOWS!!!!
www.eeworm.com/read/466057/7043614
hex key.hex
:10000000C28631C8517D5110517D79007B2E758992
:1000100010758B00758D00D28EC28F111D1B758BD4
:1000200000758D00D28EC28F51E8800030810A3079
:100030008FF6C28F0BDBE67135097401C2D7996068
:10004000157402C2D79
www.eeworm.com/read/466057/7043616
lst key.lst
ASEM-51 V1.3 Copyright (c) 2002 by W.W. Heinz PAGE 1
MCS-51 Family Macro Assembler A S E M - 5 1
www.eeworm.com/read/465537/7049523
h key.h
#ifndef _key_h
#define _key_h
#include"at89x51.h"
#define uchar unsigned char
#define uint unsigned int
uchar ki=0,flag; //flag是按键标志 ki是获得的键盘数
/***1ms延时**/
void delay(uint k)
{
k=k*125;
www.eeworm.com/read/465312/7053019
h key.h
/*
file: KEY.H
purpose:
header file for keyboard module
*/
#ifndef _KEY_H_
#define _KEY_H_
#define KEY_ESC 0x01
#define KEY_1 0x02
#define KEY_2 0x03
#define KEY_3
www.eeworm.com/read/465312/7053022
c key.c
/*
file: KEY.C
purpose:
new keyboard interrupt handler and various keyboard routines
based on code from ZKEY.ASM
date: 11/4/95
note:
the key interrupts are not passed
www.eeworm.com/read/465435/7054954