资源简介
网上下载的C#读写HID的代码修改的,https://blog.csdn.net/u010875635/article/details/73321066,没积分请到https://github.com/beatfan/HID_Communication下载原始代码。

代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
using System.Collections;
namespace Hid_test
{
public class ClassHid
{
Guid guidHID = Guid.Empty;
IntPtr hDevInfo;
//以下是调用windows的API的函数
//获得GUID
[DllImport(“hid.dll“)]
public static extern void HidD_GetHidGuid(ref Guid HidGuid);
public enum DIGCF
{
DIGCF_DEFAULT = 0x1
DIGCF_PRESENT = 0x2
DIGCF_ALLCLASSES = 0x4
DIGCF_PROFILE = 0x8
DIGCF_DEVICEINTERFACE = 0x10
}
//过滤设备,获取需要的设备
[DllImport(“setupapi.dll“ SetLastError = true)]
public static extern IntPtr SetupDiGetClassDevs(ref Guid ClassGuid uint Enumerator IntPtr HwndParent DIGCF Flags);
//获取设备,true获取到
public struct SP_DEVICE_INTERFACE_DATA
{
public int cbSize;
public Guid interfaceClassGuid;
public int flags;
public int reserved;
}
[DllImport(“setupapi.dll“ CharSet = CharSet.Auto SetLastError = true)]
public static extern Boolean SetupDiEnumDeviceInterfaces(IntPtr hDevInfo IntPtr devInfo ref Guid interfaceClassGuid UInt32 memberIndex ref SP_DEVICE_INTERFACE_DATA deviceInterfaceData);
// 获取接口的详细信息 必须调用两次 第1次返回长度 第2次获取数据
[StructLayout(LayoutKind.Sequential)]
public class SP_DEVINFO_DATA
{
public int cbSize = Marshal.SizeOf(typeof(SP_DEVINFO_DATA));
public Guid classGuid = Guid.Empty; // temp
public int devInst = 0; // dumy
public int reserved = 0;
}
[StructLayout(LayoutKind.Sequential Pack = 2)]
internal struct SP_DEVICE_INTERFACE_DETAIL_DATA
{
internal int cbSize;
internal short devicePath;
}
[DllImport(“setupapi.dll“ SetLastError = true CharSet = CharSet.Auto)]
private static extern bool SetupDiGetDeviceInterfaceDetail(IntPtr deviceInfoSet ref SP_DEVICE_INTERFACE_DATA deviceInterfaceData IntPtr deviceInterfaceDetailData
int deviceInterfaceDetailDataSize ref int requiredSize SP_DEVINFO_DATA deviceInfoData);
//获取设备文件
[DllImport(“kernel32.dll“ SetLastError = true)]
private static extern int CreateFile(
string lpFileName // file name
uint dwDesiredAccess // access mode
uint dwShareMode // share mode
uint lpSecurityAttributes // SD
uint dwCreationDisposition // how to create
uint dwFlagsAndAttributes // file attributes
uint hTemplateFile // handle to
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 307 2018-05-03 10:27 HID_Communication\.git\config
文件 73 2018-05-03 10:27 HID_Communication\.git\desc
文件 23 2018-05-03 10:27 HID_Communication\.git\HEAD
文件 478 2018-05-03 10:27 HID_Communication\.git\hooks\applypatch-msg.sample
文件 896 2018-05-03 10:27 HID_Communication\.git\hooks\commit-msg.sample
文件 189 2018-05-03 10:27 HID_Communication\.git\hooks\post-update.sample
文件 424 2018-05-03 10:27 HID_Communication\.git\hooks\pre-applypatch.sample
文件 1642 2018-05-03 10:27 HID_Communication\.git\hooks\pre-commit.sample
文件 1348 2018-05-03 10:27 HID_Communication\.git\hooks\pre-push.sample
文件 4951 2018-05-03 10:27 HID_Communication\.git\hooks\pre-reba
文件 544 2018-05-03 10:27 HID_Communication\.git\hooks\pre-receive.sample
文件 1239 2018-05-03 10:27 HID_Communication\.git\hooks\prepare-commit-msg.sample
文件 3610 2018-05-03 10:27 HID_Communication\.git\hooks\update.sample
文件 2205 2018-05-03 10:27 HID_Communication\.git\index
文件 240 2018-05-03 10:27 HID_Communication\.git\info\exclude
文件 191 2018-05-03 10:27 HID_Communication\.git\logs\HEAD
文件 191 2018-05-03 10:27 HID_Communication\.git\logs\refs\heads\master
文件 191 2018-05-03 10:27 HID_Communication\.git\logs\refs\remotes\origin\HEAD
文件 40 2018-05-03 10:27 HID_Communication\.git\ob
文件 1184 2018-05-03 10:27 HID_Communication\.git\ob
文件 1730 2018-05-03 10:27 HID_Communication\.git\ob
文件 136 2018-05-03 10:27 HID_Communication\.git\ob
文件 35 2018-05-03 10:27 HID_Communication\.git\ob
文件 367 2018-05-03 10:27 HID_Communication\.git\ob
文件 186 2018-05-03 10:27 HID_Communication\.git\ob
文件 910 2018-05-03 10:27 HID_Communication\.git\ob
文件 3974 2018-05-03 10:27 HID_Communication\.git\ob
文件 163 2018-05-03 10:27 HID_Communication\.git\ob
文件 384 2018-05-03 10:27 HID_Communication\.git\ob
文件 783 2018-05-03 10:27 HID_Communication\.git\ob
............此处省略117个文件信息
相关资源
- C# OCR数字识别实例,采用TessnetOcr,对
- 考试管理系统 - C#源码
- asp.net C#购物车源代码
- C#实时网络流量监听源码
- C#百度地图源码
- Visual C#.2010从入门到精通配套源程序
- C# 软件版本更新
- C#屏幕软键盘源码,可以自己定制界面
- 智慧城市 智能家居 C# 源代码
- c#获取mobile手机的IMEI和IMSI
- C#实现简单QQ聊天程序
- 操作系统 模拟的 欢迎下载 C#版
- C#写的计算机性能监控程序
- 用C#实现邮件发送,有点类似于outlo
- MVC model层代码生成器 C#
- c#小型图书销售系统
- C# Socket Server Client 通讯应用 完整的服
- c# winform 自动登录 百度账户 源代码
- C#编写的16进制计算器
- C#TCP通信协议
- C# 数据表(Dataset)操作 合并 查询一
- C#语音识别系统speechsdk51,SpeechSDK51L
- 数据库备份还原工具1.0 C# 源码
-
[免费]xm
lDocument 节点遍历C# - EQ2008LEDc#开发实例
- DirectX.Capturec# winform 操作摄像头录像附
- c# 实现的最大最小距离方法对鸢尾花
- C#版保龄球记分代码
- C#自定义控件
- 基于c#的实验室设备管理系统621530
评论
共有 条评论