'How to get rfid tag data from impinj R420 using 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++.
Solution 1:[1]
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.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | MarioV |
