AetherNet.Transport.LoRa 2.2.0

dotnet add package AetherNet.Transport.LoRa --version 2.2.0
                    
NuGet\Install-Package AetherNet.Transport.LoRa -Version 2.2.0
                    
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="AetherNet.Transport.LoRa" Version="2.2.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AetherNet.Transport.LoRa" Version="2.2.0" />
                    
Directory.Packages.props
<PackageReference Include="AetherNet.Transport.LoRa" />
                    
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 AetherNet.Transport.LoRa --version 2.2.0
                    
#r "nuget: AetherNet.Transport.LoRa, 2.2.0"
                    
#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 AetherNet.Transport.LoRa@2.2.0
                    
#: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=AetherNet.Transport.LoRa&version=2.2.0
                    
Install as a Cake Addin
#tool nuget:?package=AetherNet.Transport.LoRa&version=2.2.0
                    
Install as a Cake Tool

AetherNet.Transport.LoRa

Real LoRa (Aether Red / CircleLink) transport for AetherNet, driving a serial-attached LoRa module that speaks the RYLR-class AT command set (Reyax RYLR896/RYLR998 and compatibles) on an SX127x/SX126x radio. Implements ICircleLinkTransportService, so the transport ladder ranks it at its ~15 km reach.

This is the "hardware adopted" path documented by LoRaCircleLinkStub: it opens the serial port, configures the radio (address / network / band / spreading factor), sends with AT+SEND, and surfaces inbound +RCV frames as DataReceived. Payloads are the raw AetherNet packet, hex-framed to survive the AT text protocol; address 0 is broadcast (managed-flood mesh), and RegisterPeer maps a UHID to a numeric node address for directed sends.

Verification status: the code is real and compiles (net9 + net10), but it is runtime-UNVERIFIED — it has not been exercised against a physical module (none on the build machine). On-radio bring-up — two modules exchanging a frame — is the open step. IsAvailable is true only when the configured serial port actually opens.

Usage

var lora = new LoRaSerialTransportService(new LoRaSerialOptions
{
    PortName = "COM5",        // or "/dev/ttyUSB0"
    Address  = 1,
    BandHz   = 868_500_000,   // EU868; US915 = 915_000_000
});

if (lora.Open())              // false if the module/port isn't present
{
    lora.DataReceived += (from, bytes) => { /* inbound AetherNet packet */ };
    await lora.SendAsync(peerUhid, packetBytes);
}

License

MIT — see the repository root.

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  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 is compatible.  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
2.2.0 0 7/2/2026
2.1.0 40 7/1/2026
2.0.0 104 6/27/2026