本资源是C#程序源码,不包含STM32端源码 STM32端USB_DEVICE类型:Custom Human InterfaceDevice
2022-04-19 19:31:12 139KB C# STM32 HID
1
windows hid api,windows开发usb hid必备神器,包含源码。
2022-04-18 13:57:21 30KB windows hid api
1
HID Usage Tables 1.12 键盘开发必备
2022-04-17 17:52:52 950KB HID 键盘
1
本书介绍了最新的USB2.0标准,从USB的基础开始介绍,包括实际的硬件与软件,并使用汇编语言、Visual C++、Visual Basic等来示范程序代码的编写。另外还有各种USB芯片介绍。 本书适合从事USB硬件、软件设计的程序员和其他相关技术人员使用或参考。
1
C#和USB HID进行通讯,实现发送、接收数据,非常实用。
2022-04-16 16:42:15 151KB usb hid 读写 通信
1
文件夹中包含hidapi.h hidapi.dll hidapi.lib,我是在windows10系统中用VS2013编译的release版本,我用于qt的调用,是可以实现的。 调用过程: int res; res = hid_init(); wchar_t wstr[MAX_STR]; int i; // Open the device using the VID, PID, // and optionally the Serial number. handle = hid_open(0x0483, 0x5750, NULL); if(handle == NULL) { qDebug() << "NULL-----------------------NULL" ; return; } else { qDebug() << " not ------------NULL-----------------------NULL" ; } // Read the Manufacturer String res = hid_get_manufacturer_string(handle, wstr, MAX_STR); wprintf(L"Manufacturer String: %s\n", wstr); // Read the Product String res = hid_get_product_string(handle, wstr, MAX_STR); wprintf(L"Product String: %s\n", wstr); // Read the Serial Number String res = hid_get_serial_number_string(handle, wstr, MAX_STR); wprintf(L"Serial Number String: (%d) %s\n", wstr[0], wstr); // Read Indexed String 1 res = hid_get_indexed_string(handle, 1, wstr, MAX_STR); wprintf(L"Indexed String 1: %s\n", wstr); qDebug("hid read start"); int res = hid_set_nonblocking(handle, 0); while (1) { res = hid_read(handle,buf,sizeof(buf)); QString asd ; for(int i = 0;i < sizeof(buf);i++) { char str[20]; sprintf(str , "%02x",buf[i]); asd+=str ; } if(!cardInfo.contains(asd.toUpper())) { cardInfo.append(asd.toUpper() ); for(int i = 0;i < cardInfo.size() ;i++) { dealWithData( cardInfo[i]); } } }
2022-04-16 14:53:32 10KB qt usb hidapi
1
USB-HID协议中文版.doc
2022-04-14 18:04:02 1.49MB usb
支持键盘鼠标 绝对定位设备 媒体设备等等
2022-04-13 21:40:22 271KB avr hid
1
LED电子胸牌改字软件,软件教程,支持WINDOWS XP,WIN7,WIN10系统
2022-04-11 13:19:05 28.59MB MiniLED USB HID
1
USB HID报告描述符,生成工具,可以帮助生成HID报告描述符
2022-04-09 21:43:21 97KB HID Descriptor tool USB
1