插件 LibUsbDotNet.dll
網盤下載
鏈接: https://pan.baidu.com/s/1QoHa3sMZxAlckQJmF3mRGA 提取碼: 7ybq
安裝 LibUsbDotNet_Setup.2.2.8.exe
默認安裝地址 C:\Program Files\LibUsbDotNet 中有各種usb操作c#示例
usb 插拔示例 C:\Program Files\LibUsbDotNet\Src\Test_DeviceNotify
unity應用此插件注意 api為 .net4.x 版本 在編輯器中應用時可能會報錯
using LibUsbDotNet.DeviceNotify; using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class LibUsb : MonoBehaviour { private IDeviceNotifier devNotifier; public Text text; delegate void AppendNotifyDelegate(string s); void Start() { devNotifier = DeviceNotifier.OpenDeviceNotifier(); devNotifier.OnDeviceNotify += onDevNotify; } private void onDevNotify(object sender, DeviceNotifyEventArgs e) { text.text = e.EventType.ToString(); } }