C#如何使用LibUsbDotNet實現USB通訊的樣本詳解

來源:互聯網
上載者:User
網上C#USB通訊的資料比較少, 基本上都是基於LibUsbDotNet 和 CyUsb, 關於印表機裝置的還有一個OPOS。

本篇文章基於LibUsbDotNet。

  1. 下載並安裝 LibUsbDotNet 安裝檔案。

  2. 運行Filter Wizard, Install a device filter。 安裝需要通訊的usb裝置。

  

  3. 建一個簡單的控制台項目,進行測試, 為列印需要通訊裝置的資訊。

  

相關代碼:  

引用  


using LibUsbDotNet;using LibUsbDotNet.Main;using LibUsbDotNet.Info;

PrintUsbInfo


 public static void PrintUsbInfo()        {            UsbDevice usbDevice = null;            UsbRegDeviceList allDevices = UsbDevice.AllDevices;            Console.WriteLine("Found {0} devices", allDevices.Count);            foreach (UsbRegistry usbRegistry in allDevices)            {                Console.WriteLine("Got device: {0}\r\n", usbRegistry.FullName);                if (usbRegistry.Open(out usbDevice))                {                    Console.WriteLine("Device Information\r\n------------------");                    Console.WriteLine("{0}", usbDevice.Info.ToString());                    Console.WriteLine("VID & PID: {0} {1}", usbDevice.Info.Descriptor.VendorID, usbDevice.Info.Descriptor.ProductID);                    Console.WriteLine("\r\nDevice configuration\r\n--------------------");                    foreach (UsbConfigInfo usbConfigInfo in usbDevice.Configs)                    {                        Console.WriteLine("{0}", usbConfigInfo.ToString());                        Console.WriteLine("\r\nDevice interface list\r\n---------------------");                        ReadOnlyCollection<UsbInterfaceInfo> interfaceList = usbConfigInfo.InterfaceInfoList;                        foreach (UsbInterfaceInfo usbInterfaceInfo in interfaceList)                        {                            Console.WriteLine("{0}", usbInterfaceInfo.ToString());                            Console.WriteLine("\r\nDevice endpoint list\r\n--------------------");                            ReadOnlyCollection<UsbEndpointInfo> endpointList = usbInterfaceInfo.EndpointInfoList;                            foreach (UsbEndpointInfo usbEndpointInfo in endpointList)                            {                                Console.WriteLine("{0}", usbEndpointInfo.ToString());                            }                        }                    }                    usbDevice.Close();                }                Console.WriteLine("\r\n----- Device information finished -----\r\n");            }        }

調用


public static void Main(string[] args)        {            PrintUsbInfo();            // Wait for user input..            Console.ReadKey();        }
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.