Meadow.Foundation.Grove.Transceivers.LoRa-E5
2.5.0.12-beta
dotnet add package Meadow.Foundation.Grove.Transceivers.LoRa-E5 --version 2.5.0.12-beta
NuGet\Install-Package Meadow.Foundation.Grove.Transceivers.LoRa-E5 -Version 2.5.0.12-beta
<PackageReference Include="Meadow.Foundation.Grove.Transceivers.LoRa-E5" Version="2.5.0.12-beta" />
<PackageVersion Include="Meadow.Foundation.Grove.Transceivers.LoRa-E5" Version="2.5.0.12-beta" />
<PackageReference Include="Meadow.Foundation.Grove.Transceivers.LoRa-E5" />
paket add Meadow.Foundation.Grove.Transceivers.LoRa-E5 --version 2.5.0.12-beta
#r "nuget: Meadow.Foundation.Grove.Transceivers.LoRa-E5, 2.5.0.12-beta"
#:package Meadow.Foundation.Grove.Transceivers.LoRa-E5@2.5.0.12-beta
#addin nuget:?package=Meadow.Foundation.Grove.Transceivers.LoRa-E5&version=2.5.0.12-beta&prerelease
#tool nuget:?package=Meadow.Foundation.Grove.Transceivers.LoRa-E5&version=2.5.0.12-beta&prerelease
Meadow.Foundation.Grove.Transceivers.LoRa-E5
Grove Lora-E5 LoRa transceiver module driver
The LoRa-E5 library is included in the Meadow.Foundation.Grove.Transceivers.LoRa-E5 nuget package and is designed for the Wilderness Labs Meadow .NET IoT platform.
This driver is part of the Meadow.Foundation peripherals library, an open-source repository of drivers and libraries that streamline and simplify adding hardware to your C# .NET Meadow IoT applications.
For more information on developing for Meadow, visit developer.wildernesslabs.co.
To view all Wilderness Labs open-source projects, including samples, visit github.com/wildernesslabs.
Installation
You can install the library from within Visual Studio using the NuGet Package Manager or from the command line using the .NET CLI:
dotnet add package Meadow.Foundation.Grove.Transceivers.LoRa-E5
Usage
LoRaE5? radio;
public override async Task Initialize()
{
Resolver.Log.Info("Initializing Grove Lora-E5...");
// Grove UART connector on Project Lab V1: com1 (RX=D13, TX=D12)
var portName = Device.PlatformOS.GetSerialPortName("com1")!;
radio = new LoRaE5(portName);
radio.PacketReceived += (s, pkt) =>
{
var text = Encoding.ASCII.GetString(pkt.Payload);
Resolver.Log.Info($"RX: \"{text}\" RSSI:{pkt.Rssi}dBm SNR:{pkt.Snr}dB");
};
var ok = await radio.Initialize();
Resolver.Log.Info($"Initialize: {(ok ? "OK" : "FAILED")}");
}
public override async Task Run()
{
if (radio == null) return;
var version = await radio.GetVersion();
Resolver.Log.Info($"Firmware: {version}");
await radio.SetTestMode();
await radio.ConfigureRf(
frequencyHz: 868_000_000,
sf: SpreadingFactor.SF7,
bandwidth: Bandwidth.BW125,
powerDbm: 14);
Resolver.Log.Info("RF configured: 868MHz SF7 BW125 14dBm");
while (true)
{
Resolver.Log.Info("Sending packet...");
var sent = await radio.SendPacket(Encoding.ASCII.GetBytes("Hello from Meadow"));
Resolver.Log.Info($"TX: {(sent ? "DONE" : "FAILED")}");
Resolver.Log.Info("Listening for reply...");
await radio.StartReceiving();
await Task.Delay(5000);
await radio.StopReceiving();
}
}
How to Contribute
- Found a bug? Report an issue
- Have a feature idea or driver request? Open a new feature request
- Want to contribute code? Fork the Meadow.Foundation.Grove repository and submit a pull request against the
developbranch
Need Help?
If you have questions or need assistance, please join the Wilderness Labs community on Slack.
About Meadow
Meadow is a complete IoT platform with defense-grade security that runs full .NET applications on embeddable microcontrollers and Linux single-board computers including Raspberry Pi and NVIDIA Jetson.
Build
Use the full .NET platform and tooling such as Visual Studio and plug-and-play hardware drivers to painlessly build IoT solutions.
Connect
Utilize native support for WiFi, Ethernet, and Cellular connectivity to send sensor data to the Cloud and remotely control your peripherals.
Deploy
Instantly deploy and manage your fleet in the cloud for OTA, health-monitoring, logs, command + control, and enterprise backend integrations.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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. |
| .NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.1 is compatible. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- Meadow.Foundation.Transceivers.SeeedWioE5 (>= 2.5.0.12-beta)
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.5.0.12-beta | 68 | 4/25/2026 |