hidapi vs15 x64 w32 库; vs2015编译;压缩包下包含hidapi.h hidapi.lib hidapi.dll
2023-04-12 15:55:02 19KB hidapi
1
hidapi是基于libusb的跨平台库,hidapi移植到android平台,详细步骤。
2023-03-15 23:12:12 40KB libusb
1
qt usb需要的dll ,工具,例程,源码,开源代码,官方例程
2022-11-08 09:33:46 36.14MB usb HID QT
1
基于hidapi库开发USB收发应用,由于之前一直困惑于USB复合设备的使用,使用这个库之后大大简化USB设备操作,首先通过VID&PID枚举当前设备信息,若设备集成多个功能需要使用USAGE区分,并获取对应的PATH,然后使用PATH打开设备,对于单功能设备可直接使用VID&PID打开,发送需注意,第一个字节为节点,如发送64字节,需要1个字节节点+64字节,接收可使用阻塞或非阻塞模式,默认为阻塞模式(可设置),还可以调用指定超时接收,个人觉得非常好用,所以给需要的同行分享下。
2022-05-11 11:51:11 8.01MB hid usb复合设备 hidapi usb发送接收
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
文件夹中包含hidapi.h+hidapi.dll+hidapi.lib,这是我在win7 x86系统下用VS2005编译hidapi-0.7.0生成的文件,可用于winX86系统下的USB通讯开发
2022-04-07 19:48:55 15KB hidapi.dll hidapi.lib hidapi.h
1
hidapi是一个开源的操作 HID 设备的库
2022-02-05 12:02:50 945KB windows
1
hidapi进行USB通讯必备的库文件和头文件 hid.lib hidpi.h hidsdi.h hidusage.h
2021-12-17 15:26:59 18KB USB HidApi
1
详见windows文件夹,vs2015环境,增加了对hidpos设备的识别,修改PID VID 后编译,自动连接,自动读取扫码枪数据
2021-12-17 12:29:40 53.38MB HID HIDPOS
1
免驱动方式蓝牙通讯库源代码。使用很方便(我是用VS2017-VC++编译成dll、QT调用非常顺溜。比libusb好用)
2021-12-10 14:42:57 43.15MB VC++ QT HIDapi USB
1