Location:
Search - USB HID send
Search list
Description: Windows 系统下
1.USB设备的查找:
2.发送数据到USB设备:
3.接收数据从USB设备:-Windows system 1. USB device search: 2. Send data to USB device: 3. Receive data from USB devices:
Platform: |
Size: 8851456 |
Author: byb |
Hits:
Description: USB HID类软固件代码,发送数据和接受数据-Soft USB HID Class firmware code, send data and receive data
Platform: |
Size: 104448 |
Author: 黎建刚 |
Hits:
Description: USB hid例程,DELPHI语言编写,收发数据等功能..欢迎大家下载-USB hid routines, DELPHI languages, send and receive data and other functions .. welcome to download
Platform: |
Size: 231424 |
Author: hzq |
Hits:
Description: HID example
USB HID Send and Read Data-HID example
Platform: |
Size: 1249280 |
Author: roven |
Hits:
Description: TENX TMU3132控制TI CC2500通信,将接收的数据发到USB。-Tenx TMU3132 control ti cc2500 communication, receive data send to usb. hid device.
Platform: |
Size: 258048 |
Author: 刘友根 |
Hits:
Description: 利用HIDKomponente控件与USB HID通信的例子,本例子实现USB与C8051F320单片机发送和接收数据。-Use the example of HIDKomponente control with USB HID communication, in this example USB and C8051F320 microcontroller to send and receive data.
Platform: |
Size: 14336 |
Author: liaobo |
Hits:
Description: 1,将STM32的USB枚举为HID设备。
2,STM32使用3个端点,端点0用于枚举用,端点1和2用于数据的发送和接收。
3,端点长度为64,也就是单次最多可以传输64个字节数据。
4,STM32获取上位机下发的数据并将该数据通过USB原样返回,同时将数据打印输出。
5,上位机程序通过调用windows的API实现对HID设备的读写控制。
-1, the STM32 USB enumeration HID devices. 2, STM32 three endpoints, endpoint 0 for enumerating endpoint 1 and 2 are used to send and receive data. 3, the endpoint of length 64, that is a single can transmit up to 64 bytes of data. 4, STM32 access to the data issued by the host computer via USB and the data is returned unchanged, while the data printout. 5, the PC program by calling the windows API to read and write control of HID devices.
Platform: |
Size: 4907008 |
Author: 罗伟东 |
Hits:
Description: bascom mega8 模拟USB-HID 发送18B20温度给计算机-bascom mega8 analog USB-HID send 18B20 temperature to the computer
Platform: |
Size: 38912 |
Author: changxiy |
Hits:
Description: 读取连接USB设备,读取发送feature,调用HID的API函数-Read the API function to connect a USB device, read send feature, call HID
Platform: |
Size: 27261952 |
Author: 元车 |
Hits:
Description: C++Builder中,通过HID_GUID找到HID USB设备,并向咖啡机设备发送命令以取得咖啡机设备的参数。深圳企业www.wik.com.hk公司的咖啡机项目基本源代码。-In C++ builder, through HID_GUID to find HID USB device. and Send command to Coffee Machine to get the parameters of Coffee Machine. Project in ShenZhen industrial www.wik.com.hk ,the source code is based for the whole project.
Platform: |
Size: 450560 |
Author: terry |
Hits:
Description: he code allows lm3s9B96 chip thr
JPEG encoder for ARM cortex M3
LPC11u14 chip system clock driver
USB device chip LPC11u14 mass sto
Based stm32f103vet6 and vs1003 mp
FM1702
The classic example of embedded r
A touch screen of the source code
YL-LPC1788 user CD-ROM (V1.1) tes
Renesas chip LCD driver program t
FPU funcition demonstration on ST
The chip USB devices LPC11u14 HID
LPC11u14 chip IIC driver software
Can be used for learning and engi
Ventilation device in houme
485 send receive their summary pr
Touch Panel Description
IPCore STM32 development board
Platform: |
Size: 160768 |
Author: Mahdi |
Hits:
Description: 实现了USB上位机与下位机之间的通信程序,底层代码采用的是神州IV的HID设备驱动,上位机采用的是libusb-win32实现的,修改了官方sourceforge提供的例程,实现了上位机给下位机发送控制控制命令,开关灯。同时,可以捕获到下位机按键被按下的消息。特殊说明,未经修改的代码可以到sourceforge上去下载,此处不再上传。testlibusb_win.c即是修改过的,是核心部分。开发环境是visual studio 2012.-USB communication program to achieve the PC and next-bit machine between underlying code uses the HID device driver Shenzhou IV, the PC uses libusb-win32 achieved by modifying the official sourceforge provides routines to achieve a PC send control to the next bit machine control commands, switch lights. Meanwhile, the next crew can capture button is pressed the message. Special instructions, unmodified code can go to sourceforge download, no upload here. testlibusb_win.c that is modified, is the core part. Development environment is visual studio 2012.
Platform: |
Size: 6144 |
Author: songdongdong |
Hits:
Description: USB-HID 上位机,能接收下位机发送的消息-USB HID PC, can receive the machine to send message
Platform: |
Size: 41984 |
Author: ouyang |
Hits:
Description: 18F4550 USB通信,基于HID模式进行上位机和下位机通信,一次发送2个字节-Communication for 18,based on HID mode to send 2 bytes.
Platform: |
Size: 105472 |
Author: meng |
Hits:
Description: 这是一个stm8S003模拟USB键盘HID的程序,首先,通过中断来接收USB数据,接收完后,调用 void usb_rx_ok(void) 来应答或不应答,并识别数据包,把相应的状态写usb这个结构体里面。
然后,在主循环中不断的调用 void usb_process(void) 来根据 usb 里面的状态来做相应的动作。
设备描述符的发送是这样的:调用 void usb_send_data(uint8_t * buffer, uint8_t lenght), 将描述符打包,放到 usb.tx_buffer 里面,然后将状态改为已经准备好发送usb.event = USB_EVENT_READY_DATA_IN,等待主机发送 DATA IN 包。
usb_rx_ok 识别到 DATA IN 包并且 usb.event 为准备发送, 就会调用 void usb_send_answer(void) 来完成数据发送。-This is an analog stm8S003 HID USB keyboard procedures, first, the received USB data to the interrupt, after receiving call void usb_rx_ok (void) to answer or not to answer, and the identification data packet, to write the corresponding status of this structure usb inside.
Then, in the main loop continually calls void usb_process (void) to do the appropriate action according to usb inside the state.
Send device descriptor is this: call void usb_send_data (uint8_t* buffer, uint8_t lenght), the descriptor packaged into usb.tx_buffer inside, then the state is ready to send usb.event = USB_EVENT_READY_DATA_IN, waiting for the host send DATA IN packets.
usb_rx_ok recognized DATA IN packets and usb.event is ready to send, it will call the void usb_send_answer (void) to complete the data transmission.
Platform: |
Size: 353280 |
Author: 张海鱼 |
Hits:
Description: 基于LPC2400的USB收发数据HID类示例程序,对于初学者很有借鉴价值!-Send and receive data based LPC2400 USB HID class example of the program, useful for beginners reference value!
Platform: |
Size: 703488 |
Author: |
Hits:
Description: STM32实现的USB-HID下位机,PC无需驱动能收发数据,文件包括一个PortHelper调试助手-STM32 USB-HID to achieve lower computer, PC without driver can send and receive data, files include a PortHelper debugging assistant
Platform: |
Size: 9643008 |
Author: 禽家十一 |
Hits:
Description: USB中的HID测试程序,自己设计HID时使用,接收与发送都是HEX码-USB HID in the test program, HID with your own design, receive and send are HEX codes
Platform: |
Size: 144384 |
Author: XZQ |
Hits:
Description: 这是带源码安装版,有源码,有注册号,完美支持 Delphi 10.2 Tokyo,nrComm Lib 是在由Deepsoftware开发类别 Miscellaneous Shareware 软件。(nrComm Lib provides some tools for performing the serial communications
tasks in Delphi/CBuilder development. It has ready solutions for many
communication tasks and supports working with different types of devices:
* RS232, serial ports (native and virtual), USB2RS232 adapters etc.;
* Telephone API (TAPI) devices (data and voice modems);
* Text to speech conversion with voice modem output;
* direct access to LPT port;
* barcode readers;
* Bluetooth connections and devices;
* GSM (sms send receive, access to phonebook etc.);
* ZModem, Kermit file transfer protocol;
* HID (Human Interface Devices) devices;
* Terminal control with VT100 support;
* USB - device detection, WinUSB or lightweight nrUsb.SYS installation, I/O operations;
* ready solution for implementation any data packet protocol TnrDataProcessor component
* 32bit and 64bit are full support. All needed drivers are signed and can be installed on x64 Windows;)
Platform: |
Size: 21935104 |
Author: kongkongkong
|
Hits:
Description: 用STM32做的一个USB 模拟发送按键到PC上 当GPIO按下的时候 模拟指定的字符发上来,模拟游戏按下的动作(Use a USB analog send button made by STM32 to send to PC when GPIO is pressed, simulate the action of game pressing)
Platform: |
Size: 1430528 |
Author: 渌江之仔 |
Hits: