如何使用C++从impinj R420获取rfid标签数据?

发布于 2025-01-20 16:53:01 字数 93 浏览 1 评论 0原文

我对标签阅读器硬件和 Impinj 完全陌生。我必须将 rfid 标签数据从 impinj R420 收集到通过以太网连接的计算机上。我应该如何继续使用 C++ 获取数据。

I am totally new to tag reader hardware and Impinj. I have to collect rfid tag data from impinj R420 onto a computer which is connected by ethernet. How should I proceed to get the data with C++.

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

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

发布评论

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

评论(1

金橙橙 2025-01-27 16:53:01

Impinj Speedway R420提供了开发基于校外主机的应用程序的不同方法。

  • Impinj octane SDK 提供Java和.NET库,它隐藏了LLRP协议的所有复杂性,有助于开发应用程序以轻松控制和收集读者的数据。

  • impinj octane ltk (LLRP工具包)提供Java,.net,C ++和C库来开发应用程序,它为您提供了更多的控制读者,使用低级阅读器协议(LLRP),使用此库要复杂得多,并且需要更多时间来完成您的应用程序。

我对您的开发的建议是,如果您可以使用Java或.NET,请使用Impinj Octane SDK库,如果C ++是必须的,那么唯一的选择就是Impinj Octane LTK。两个库都是免费的。

第三种选择是从Impinj获得Speedway Connect软件的许可,它在读者内部运行,并提供了从读者中发送数据的不同方法;到插座,通过后HTTP消息和串行USB进行REST API。您可以获得Speedway Connect软件的试用版,它只有一个限制,最多可读取500个读取,然后您需要重新启动该软件,它用于开发目的。

Impinj Speedway R420 offers different ways to develop off-reader host-based applications.

  • Impinj Octane SDK provides JAVA and .NET libraries, it hides all the complexity of LLRP protocol, helping to develop applications to control and collect data from the reader easily.

  • Impinj Octane LTK (LLRP Toolkit) provides JAVA, .NET, C++, and C libraries to develop applications, it gives you more control over the reader, using Low Level Reader Protocol (LLRP), using this library is much more complex, and it will take more time to finish your application.

My recommendation to your development is if you can use JAVA or .NET, use the Impinj Octane SDK libraries, if C++ is a must, the only choice you have is the Impinj Octane LTK. Both libraries are free of charge.

A third option is to get a license of the speedway connect software from Impinj, it runs inside the reader and provides different ways to send data out of the reader; to a socket, to a REST API through a POST HTTP message and serial USB. You can get a trial version of the Speedway Connect Software, it only has one limitation, it only reads up to 500 reads, then you will need to restart the software, it works for development purposes.

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