Beetech.Adv.Readers 1.0.1

dotnet add package Beetech.Adv.Readers --version 1.0.1
                    
NuGet\Install-Package Beetech.Adv.Readers -Version 1.0.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Beetech.Adv.Readers" Version="1.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Beetech.Adv.Readers" Version="1.0.1" />
                    
Directory.Packages.props
<PackageReference Include="Beetech.Adv.Readers" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Beetech.Adv.Readers --version 1.0.1
                    
#r "nuget: Beetech.Adv.Readers, 1.0.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Beetech.Adv.Readers@1.0.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Beetech.Adv.Readers&version=1.0.1
                    
Install as a Cake Addin
#tool nuget:?package=Beetech.Adv.Readers&version=1.0.1
                    
Install as a Cake Tool

Beetech.Adv.Readers

High-performance, industrial-grade multi-vendor RFID reader driver library supporting Impinj, Zebra, Urovo, and CAEN readers with built-in hardware licensing gatekeeping.

Supported Reader Hardware

  • Impinj: Speedway R420, Speedway R120/R220, and R700 series via Octane SDK and REST/MQTT telemetry.
  • Zebra: FX7500 and FX9600 fixed RFID readers via native Symbol.RFID3 SDK.
  • Urovo: FR2000 series desktop & fixed UHF readers via UHFReader288 SDK.
  • CAEN RFID: Desktop and fixed readers via CAENRFID SDK.

Features

  • Unified Factory Pattern: Instantiate any reader driver with standardized GeneralReader interface via ReaderFactory.CreateReader(ReaderType.ImpinjR700, readerId).
  • Direction Detection: High-accuracy tag motion analysis (In/Out inference) utilizing antenna sequence and RSSI telemetry.
  • ZeroConf / mDNS Discovery: Automated discovery of network-attached Impinj readers.
  • License Protection: Automated gatekeeping requiring a valid hardware-locked license prior to RF transmission.

Usage

using Beetech.Adv.Readers;
using Beetech.Adv.Common.Rfid;

// Initialize reader via factory
GeneralReader reader = ReaderFactory.CreateReader(ReaderType.ImpinjR700, readerId: 1);
reader.IpAddress = "192.168.0.2";

// Attach event listener
reader.OnTagRead += (sender, tagEvent) =>
{
    Console.WriteLine($"Tag: {tagEvent.Epc}, RSSI: {tagEvent.PeakRssiCdbm}");
};

// Connect and start reading
await reader.ConnectAsync();
await reader.StartAsync();

License

Copyright (c) Beetech Asia. All rights reserved.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.1 173 9/5/2026