c# - 如何从 usb rfid 阅读器读取?

标签 c# usb rfid

我买了一个 usb rfid 读卡器。当用户将 rfid 标签放在设备前面时,我如何读取数据?

我的电脑将该设备识别为人机接口(interface)设备。 如果它将它识别为 com 设备,那么使用 serialPort 对象从设备读取就容易多了,但我不知道如何从 usb 设备读取。

有什么帮助吗?

最佳答案

这就是我遇到同样问题时所做的。

using System;
using System.Text;
using LibUsbDotNet;
using LibUsbDotNet.Main;

namespace Examples
{
internal class ReadPolling
{
    public static UsbDevice MyUsbDevice;

    #region SET YOUR USB Vendor and Product ID!

    public static UsbDeviceFinder MyUsbFinder = new UsbDeviceFinder(1234, 1);

    #endregion

    public static void Main(string[] args)
    {
        ErrorCode ec = ErrorCode.None;

        try
        {
            // Find and open the usb device.
            MyUsbDevice = UsbDevice.OpenUsbDevice(MyUsbFinder);

            // If the device is open and ready
            if (MyUsbDevice == null) throw new Exception("Device Not Found.");

            // If this is a "whole" usb device (libusb-win32, linux libusb-1.0)
            // it exposes an IUsbDevice interface. If not (WinUSB) the 
            // 'wholeUsbDevice' variable will be null indicating this is 
            // an interface of a device; it does not require or support 
            // configuration and interface selection.
            IUsbDevice wholeUsbDevice = MyUsbDevice as IUsbDevice;
            if (!ReferenceEquals(wholeUsbDevice, null))
            {
                // This is a "whole" USB device. Before it can be used, 
                // the desired configuration and interface must be selected.

                // Select config #1
                wholeUsbDevice.SetConfiguration(1);

                // Claim interface #0.
                wholeUsbDevice.ClaimInterface(0);
            }

            // open read endpoint 1.
            UsbEndpointReader reader = MyUsbDevice.OpenEndpointReader(ReadEndpointID.Ep01);


            byte[] readBuffer = new byte[1024];
            while (ec == ErrorCode.None)
            {
                int bytesRead;

                // If the device hasn't sent data in the last 5 seconds,
                // a timeout error (ec = IoTimedOut) will occur. 
                ec = reader.Read(readBuffer, 5000, out bytesRead);

                if (bytesRead == 0) throw new Exception(string.Format("{0}:No more bytes!", ec));
                Console.WriteLine("{0} bytes read", bytesRead);

                // Write that output to the console.
                Console.Write(Encoding.Default.GetString(readBuffer, 0, bytesRead));
            }

            Console.WriteLine("\r\nDone!\r\n");
        }
        catch (Exception ex)
        {
            Console.WriteLine();
            Console.WriteLine((ec != ErrorCode.None ? ec + ":" : String.Empty) + ex.Message);
        }
        finally
        {
            if (MyUsbDevice != null)
            {
                if (MyUsbDevice.IsOpen)
                {
                    // If this is a "whole" usb device (libusb-win32, linux libusb-1.0)
                    // it exposes an IUsbDevice interface. If not (WinUSB) the 
                    // 'wholeUsbDevice' variable will be null indicating this is 
                    // an interface of a device; it does not require or support 
                    // configuration and interface selection.
                    IUsbDevice wholeUsbDevice = MyUsbDevice as IUsbDevice;
                    if (!ReferenceEquals(wholeUsbDevice, null))
                    {
                        // Release interface #0.
                        wholeUsbDevice.ReleaseInterface(0);
                    }

                    MyUsbDevice.Close();
                }
                MyUsbDevice = null;

                // Free usb resources
                UsbDevice.Exit();

            }

            // Wait for user input..
            Console.ReadKey();
        }
    }
  }
}

按供应商和产品 ID 打开 USB 设备。

打开一个 UsbEndpointReader 类进行读取。

读取并显示来自 Ep01 的 USB 设备输出,直到 5 秒内未收到任何数据。

关于c# - 如何从 usb rfid 阅读器读取?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22516812/

相关文章:

javascript - 如何从客户端安全地发送密码?

c# - 将自定义字段属性添加到 CsvHelper

android - adb devices(在 android 主机上)显示没有设备

c# - 如何在有限的空间内嵌入数字签名

NFC NDEF 消息格式 : payload size (ISO 15693 header, NfcV)

c# - EF 上的数据库连接错误

c# - Windows 应用商店应用程序 - WriteableBitmap ,blit 方法

c++ - USB 端口的 Windows 窗体应用程序

android - 以编程方式获取连接的Powerbank设备信息和Powerbank设备的电池容量

android - 三星 Nexus Prime 和读取 RFID 员工 ID