代码搜索:GetKey

找到约 2,187 项符合「GetKey」的源代码

代码结果 2,187
www.eeworm.com/read/204469/15338900

cpp p231.cpp

#include "iostream.h" #include "p228.cpp" template class OrderedList : public DataList { public: OrderedList ( int sz = 10 ) : DataList (sz) { } virtual
www.eeworm.com/read/202922/15369677

asm pwm电机调速.asm

ORG 0000H AJMP MAIN ORG 001BH AJMP INT_0 ORG 0030H MAIN: MOV 70H,#00H MOV 71H,#00H MOV 72H,#00H MOV 73H,#00H MOV 75H,#00H MOV DPTR,#0FF82H MOV A,#0D1H MOVX @DPTR,A
www.eeworm.com/read/202246/15388678

java testmap.java

import java.util.*; import java.io.*; class Map1 { private T1 key; private T2 val; public Map1(T1 key,T2 val) { this.key=key; this.val=val; } public void set(T
www.eeworm.com/read/109983/15544082

cpp k.cpp

#include "stdio.h" #include "conio.h" #include int GetKey() { int c; while (bioskey(1) == 0); c = bioskey(0); return c; } void main() { int key=0, kh,kl; while(key!=283
www.eeworm.com/read/108065/15594753

txt 用仿真器调试简单串口接收程序.txt

/********************************************************************/ /*试验串行口通信的例子 DieHeart. Sep 14th,2004 */ /*****************************************************************
www.eeworm.com/read/287694/8676073

c keypadc.c

#include "calc.h" char getkey (void) // Use the input routine from the *Keypad_Read* assembly file to { char data mykey; mykey = input(); if(mykey==0) { } else { display(myke
www.eeworm.com/read/385281/8810266

html personpairdirectorygeneric-compare.html

Code Fragment public stat
www.eeworm.com/read/380646/9135975

c key.c

#include #include #include #include uint8_t getkey(void); const uint8_t keyVAL[] PROGMEM={0x1e,0x1d,0x1b,0x17,0x2e,0x2d,0x2b,0x27,
www.eeworm.com/read/399152/7886041

cpp calculator.cpp

#include "calculator.hpp" int token=0; //记录当前按下的键 int add_exp(void) { int temp1=mul_exp(); int temp2; if(token==sadd) //加号 { temp2=add_exp(); return (temp1+temp2);
www.eeworm.com/read/298855/7929997

h key.h

#ifndef KEY_H #define KEY_H #include "common.h" uchar GetKey(void); #endif