CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 其他小程序 搜索资源 - INPUT KEY

搜索资源列表

  1. ff

    0下载:
  2. 主要组成是以51单片机最小系统为核心,通过键盘获取按键信息,通过运用单片机定时器等部件实现蜂鸣器发声同时用数码管同步显示。本系统具有播放歌曲及选取按键输入高、中、低音的功能-Major component is the smallest single-chip system as the core 51, ​ ​ access to key information through the keyboard, and other components through the u
  3. 所属分类:Other systems

    • 发布日期:2017-04-07
    • 文件大小:18091
    • 提供者:门街
  1. FPGA

    0下载:
  2. FPGA实验:用于检测输入的二进制系列,连续输入4个0或1,输出1,否则输出0。用按键模拟开关输入-FPGA experiment: for the detection of binary input series, for the importation of 4 0 or 1, output 1, otherwise output 0. Analog switch with key input
  3. 所属分类:Other systems

    • 发布日期:2017-04-01
    • 文件大小:918858
    • 提供者:zhangyi
  1. bianyi

    0下载:
  2. 打字计时练习微机原理课程设计_打字计时练习_汇编课程设计说明:这是一个打字计时练习的程序,在缓冲区中预放了一些字母,运行时,可按照屏幕上显示的字母输入练习,每输入完一行按回车键后,可显示出练习输入的时间.-Typing practice time curriculum design Microcomputer Principle _ _ compilation of typing practice time curriculum design Descr iption: This is a ti
  3. 所属分类:Other systems

    • 发布日期:2017-03-30
    • 文件大小:162630
    • 提供者:张江海
  1. jxOA2009key

    0下载:
  2. 1.  假设你的工具啦OA安装在D:\MYOA,解压缩附件中的reg 2.  放在D:\MYOA\webroot\文件夹下 3.  访问Http://OA地址/reg,输入机器码得到注册码,序列号也给出了,建议大家不要验证。 4.  登录OA,用注册码进行注册  已经测试确实可以得到注册码注册成功! 原文链接:极限OA2009注册机 http://www.tool.la/soft/read-htm-tid-10709.html-
  3. 所属分类:Other systems

    • 发布日期:2017-06-16
    • 文件大小:25355750
    • 提供者:wtb
  1. 44jianpansaomiao

    0下载:
  2. 4*4键盘扫描,采用列扫描法。依次对每列输出扫描电位,再从行输入扫描电平,通过该值判断被按下的键-4* 4 keyboard scanning, the use of column scanning method. Followed by scanning the output for each column potentials, input from the scan line level, the adoption of the value judgments of the key is
  3. 所属分类:Other systems

    • 发布日期:2017-04-12
    • 文件大小:1174
    • 提供者:石涓
  1. DES

    2下载:
  2. 使用JAVA实现DES密码加密、解密过程,密钥在程序中能够指定,也可改为用户自己输入-DES implementation using JAVA password encryption, decryption process, the key specified in the procedure can also be changed to the user' s own input
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-24
    • 文件大小:85564
    • 提供者:liuxiao
  1. ceshiCPU

    0下载:
  2. NCS处理器中微程序控制器的设计方法,介绍了微程序控制器的基本构成电路和工作特点;在设计中采用了诸如:多入口地址输入、内外码转换、封锁机制等提高控制器性能的方法,并确定了电路的工作时钟、数据通路和控制通路。最后指出成功的微程序控制器设计是设计高性能CPU的关键。-NCS processor micro-controller design method, introduced micro-program controller circuit and the basic characteristic
  3. 所属分类:Other systems

    • 发布日期:2017-03-29
    • 文件大小:901008
    • 提供者:朋来
  1. key

    0下载:
  2. 模拟键盘输入程序,适合开发外挂程序 -Simulation of keyboard input program for the development of plug-in keyboard simulation procedures, procedures for the development of plug-ins
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-30
    • 文件大小:154441
    • 提供者:文劲清
  1. 16keyboardshowtheCPU6LED

    0下载:
  2. 本设计是基于51单片机的小型cpu及六位显示。该系统由4*4矩阵输入器、cpu部分以及由6位LED显示管组成得显示器。输入器由16个按键开关组成;cpu部分由51单片机、晶振片以及电容等组成;显示器由一个6位的7段译码管及电阻构成。Cpu可以通过调用事前输入的程序对是否有键被按下进行扫描和确认并根据程序进行代码的调用与存储,并通过LED6位显示器进行输出。该显示具有存储功能,可以将输出的数字保存一段时间以供人眼阅读。-The single-chip design is based on 51 s
  3. 所属分类:Other systems

    • 发布日期:2017-04-14
    • 文件大小:4116
    • 提供者:rt4
  1. 1-key-keyboard

    0下载:
  2. atmega8 1 button Usb Hid keyboard for input password etc
  3. 所属分类:Other systems

    • 发布日期:2017-04-03
    • 文件大小:90211
    • 提供者:abbas
  1. input-character-statistics

    0下载:
  2. C语言实现输入字符统计 实现统计字符的的功能 问题提出: 从键盘读入一段文本,统计其中的英文字母、数字、空格和除此之外的其他字符个数。 问题分析: 由于输入字符的个数不确定,需构建条件循环while((c=getchar())!=EOF),其中EOF为符号常量,用于表示文本输入结束,在PC机上通过输入Ctrl+Z组合键来输入此字符。所需数据与算法如下。 -C language input character statistics based on statistical c
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-28
    • 文件大小:10195
    • 提供者:霍佳骥
  1. VCKaisa

    1下载:
  2. 使用vc编写的简单的实现凯撒密码代码。语法是,将输入的明文根据其ascll码加上输入的密钥之后换位为相应ascll的密文。-Using vc to write the simple implementation of Caesar cipher code. According to its syntax is that the input plaintext ascll code plus the input key after transposition for the correspondi
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-06
    • 文件大小:66841
    • 提供者:
  1. 732

    0下载:
  2. 键盘输入关键码个数n,并输入n个整型关键码,再输入间隔d,第i个关键码和第i+d个元素为一组,分组进行排序,最后输出排序后的结果。-Keyboard input key number n, n integers and enter key, and then enter the interval d, the i-th and i+d key elements as a group, grouping sort, but it finally output sorted.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-11
    • 文件大小:665
    • 提供者:李阳
  1. 735

    0下载:
  2. 键盘输入关键码的个数n和n个整型关键码,输出给定范围内的关键码.-Keyboard input key number n and n an integer key, key code output for a given range.
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-02
    • 文件大小:879846
    • 提供者:李阳
  1. key-words

    0下载:
  2. 首先将输入的数字按照大小排序,然后根据数字的个数输出中位数;-First, the input digital sorted according to size, and then outputs the number of digits according to the median
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-02
    • 文件大小:9355
    • 提供者:
  1. Key-Value

    0下载:
  2. 根据键盘输入的按键在win32控制台窗口显示按键键值。-Display button keys in win32 console window according to keyboard input keys.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:1735
    • 提供者:史家明
  1. Airoha.AB1500_FamilyMPTool_20141104_3.5.5.0

    0下载:
  2. 温度范围 -40篊 to +80篊 无线传输范围 >10 米 传输功率 支持 CLASS2 灵敏度 -80dBm 频率范围 2.402GHz-2.480GHz 对外接口 PIO, UART 音频性能 单声道 音频信噪比 ≥75dB 失真度 ≤0.1% 模块尺寸 29.0X15.0X2.00mm(1 NC NC NC 2 AOHPM Audio Headphone common mode output/sense input. 3 AOHPL Audio L-c
  3. 所属分类:其他

    • 发布日期:2017-12-17
    • 文件大小:3519488
    • 提供者:rainbow1888
  1. android-remote-control-computer

    0下载:
  2. 实现功能: 鼠标控制模式: 鼠标的移动 鼠标左键/右键点击 鼠标滑轮 文件的拖动 自定义音量键功能 键盘输入模式: 向电脑发送文字(中英) 回车 退格 以及DOS下的输入 电脑方向键的控制 WSAD模式 和 方向键模式 音量键可根据用户需求自定义设置功能 手柄控制模式: 横屏下 左边为控制方向 右边为操作 可自定义 左边控制方式为鼠标控制 和 键盘控制 右边 可自定义操作方式 技术点: 多线程+网络编程 JavaAPI的运用(调用操作系统事件) 手机端事件响应的运用
  3. 所属分类:其他

    • 发布日期:2018-01-06
    • 文件大小:5747712
    • 提供者:洋子
  1. Keyboard

    0下载:
  2. RAWINPUT FOR C#RAWINPUT FOR C#
  3. 所属分类:其他

    • 发布日期:2018-01-07
    • 文件大小:14336
    • 提供者:MIGMB
  1. 2个KEY

    0下载:
  2. STM32F103 利用终端的方式实现两个独立按键的输入(STM32F103 realizes the input of two independent keys by terminal mode.)
  3. 所属分类:其他

« 12 3 4 5 »
搜珍网 www.dssz.com