从 USB 条码扫描仪读取

发布于 2024-09-04 19:13:49 字数 116 浏览 1 评论 0原文

我有这个漂亮的 USB 条形码扫描仪,我想使用 USB 驱动程序而不是键盘输入来读取输入。

如何使用 .NET 来实现这一点?有现成的库吗?我找不到任何真正有用的东西......

谢谢!

I've got this nice USB barcode scanner and I'd like to readthe input using the USB driver and not the keyboard input.

How can this be accomplished using .NET? any ready libraries? I couldn't find anything of real use...

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

瞎闹 2024-09-11 19:13:49

如果它是 USB 读卡器,您应该找到它附带的 .net 驱动程序,这样您就可以获得一个提供 IO 以及可能更多功能的类。

如果扫描仪内部有一个 USB 转串行转换器,那么您应该在设备管理器中看到扫描仪正在使用哪个 COM 端口。在这种情况下,您可以使用 SerialPort 类与设备进行通信。请注意,在进行任何通信之前,您应该正确设置设置(即波特率、奇偶校验位、停止位等)。

If it is a USB reader, you should find the .net drivers that come with it, such that you get a class which provides the IO and perhaps more functionality.

If the scanner has internally a USB to Serial converter, then you should see in your Device Manager which COM port is in use by the scanner. In that case, you can use the SerialPort class for communication to the device. Note that you should set the settings (i.e. baudrate, parity bit, stop bit, etc) correct before you can have any communication.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文