7

我正在尝试连接到 USB 数字秤。代码确实连接到规模scale.IsConnected,但它挂在scale.Read(250)应该是超时的 250 毫秒的位置,但它永远不会从读取返回。

我正在使用该线程中的代码,但由于Mike O Brien 的 HID 库的新版本导致的一项更改除外:

public HidDevice[] GetDevices ()
{
    HidDevice[] hidDeviceList;
            
    // Metler Toledo
    hidDeviceList = HidDevices.Enumerate(0x0eb8).ToArray();
    if (hidDeviceList.Length > 0)
        return hidDeviceList;
    
    return hidDeviceList;
}

我设法让规模工作,看看迈克的答案在这里

4

2 回答 2

4

我设法让秤正常工作。在规模返回数据时运行的回调中,我正在执行Read阻塞调用。

所以造成了死锁,我应该只使用ReadReportor Read。看看 Mike 在下面发布的示例

using System;
using System.Linq;
using System.Text;
using HidLibrary;

namespace MagtekCardReader
{
    class Program
    {
        private const int VendorId = 0x0801;
        private const int ProductId = 0x0002;

        private static HidDevice _device;

        static void Main()
        {
            _device = HidDevices.Enumerate(VendorId, ProductId).FirstOrDefault();

            if (_device != null)
            {
                _device.OpenDevice();

                _device.Inserted += DeviceAttachedHandler;
                _device.Removed += DeviceRemovedHandler;

                _device.MonitorDeviceEvents = true;

                _device.ReadReport(OnReport);

                Console.WriteLine("Reader found, press any key to exit.");
                Console.ReadKey();

                _device.CloseDevice();
            }
            else
            {
                Console.WriteLine("Could not find reader.");
                Console.ReadKey();
            }
        }

        private static void OnReport(HidReport report)
        {
            if (!_device.IsConnected) {
                return;
            }

            var cardData = new Data(report.Data);

            Console.WriteLine(!cardData.Error ? Encoding.ASCII.GetString(cardData.CardData) : cardData.ErrorMessage);

            _device.ReadReport(OnReport);
        }

        private static void DeviceAttachedHandler()
        {
            Console.WriteLine("Device attached.");
            _device.ReadReport(OnReport);
        }

        private static void DeviceRemovedHandler()
        {
            Console.WriteLine("Device removed.");
        }
    }
}
于 2012-10-18T15:22:29.700 回答
2

我无法帮助您解决问题,但前一段时间我不得不将脚踏开关集成到应用程序中,我发现这个 USB HID C# 库运行良好:

用于 C# 的 USB HID 组件

也许您应该尝试一下,因为它非常易于集成。

于 2012-04-27T13:13:19.863 回答