代码搜索:Key
找到约 10,000 项符合「Key」的源代码
代码结果 10,000
www.eeworm.com/read/205927/7216961
txt xx_key.txt
A
B
A
B
A
A
C
B
C
B
B
A
C
C
B
C
A
A
B
A
B
B
A
B
B
B
C
B
B
B
www.eeworm.com/read/461707/7221882
txt key_disp.txt
#include //"D:\Keil\C51
#include
#include
extern unsigned char ReadAdc();//读ADC转化的数字量
extern void DispVol(unsigned char v); //将电压值输入Dispbuf中
extern void
www.eeworm.com/read/461264/7230637
pro read_key.pro
FUNCTION read_key, wait
;+
; NAME:
; READ_KEY
; PURPOSE:
; To read a keystroke and return its ASCII equivalent
; EXPLANATION:
; If an ESCAPE sequence was produced and the sequence is
; recognized (e.
www.eeworm.com/read/460801/7240547
c key_scan.c
#include "GloblDef.h"
#include "key.h"
struct SKeyValue xdata KeyValue[KEY_NUM]={
{1,{0}}, //功能键1 KEY_FUN1
{1,{1}}, //退格键 KEY_C
{1,{2}}, //功能键2 KEY_FUN2
{2,{'1','.'}},
{4,{'2','a','b','
www.eeworm.com/read/460801/7240548
c key_test.c
#include "GloblDef.h"
#include "key.h"
extern void KeyInitial();
extern BYTE GetKeyValue();
extern BYTE ScanKey();
extern BYTE xdata ScanKeyInterval; //键扫描时间
#pragma NOAREGS
void OnTimer()
www.eeworm.com/read/460213/7255514
vhd key_press.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
use ieee.std_logic_unsigned.all;
entity key_press is
port(clk1:in std_logic;
row:in std_logic_vector(3 downto 0);
ke
www.eeworm.com/read/460213/7255519
vhd key_scan.vhd
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_arith.all;
use ieee.std_logic_unsigned.all;
entity key_scan is
port(clk,key_pre:in std_logic;
row:in std_logic_vector(3 downto 0);
www.eeworm.com/read/460213/7255578
vhd key1.vhd
--Key1模块
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity key1 is
port(
kin:in std_logic;
kout:out std_logic_vector(1 downto 0)
);
end key1;
architec