gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-30 14:30:33 25 4
gpt4 key购买 nike

我买了一个 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com