AMWD.Protocols.Modbus.Serial
0.1.0
dotnet add package AMWD.Protocols.Modbus.Serial --version 0.1.0
NuGet\Install-Package AMWD.Protocols.Modbus.Serial -Version 0.1.0
<PackageReference Include="AMWD.Protocols.Modbus.Serial" Version="0.1.0" />
paket add AMWD.Protocols.Modbus.Serial --version 0.1.0
#r "nuget: AMWD.Protocols.Modbus.Serial, 0.1.0"
// Install AMWD.Protocols.Modbus.Serial as a Cake Addin
#addin nuget:?package=AMWD.Protocols.Modbus.Serial&version=0.1.0
// Install AMWD.Protocols.Modbus.Serial as a Cake Tool
#tool nuget:?package=AMWD.Protocols.Modbus.Serial&version=0.1.0
Modbus Protocol for .NET
Implements the Modbus communication protocol as .NET Standard library.
The first shot was made in 2018 - see on GitHub. This is the second try with a major UnitTest coverage and some community contributions right from the start.
Example
You can use the client without any deeper knowledge of the protocol itself.
string host = "modbus-device.local";
int port = 502;
using var client = new ModbusTcpClient(host, port);
await client.StartAsync(CancellationToken.None);
byte deviceId = 5;
ushort startAddress = 19000;
ushort count = 2;
var registers = await client.ReadHoldingRegistersAsync(deviceId, startAddress, count, CancellationToken.None);
float voltage = registers.GetSingle();
Console.WriteLine($"The voltage between L1 and N is: {voltage:N2}V");
For the people who already saw different devices: yes, it's a request to a Janitza device.
Documentation
The changelog is available here: CHANGELOG
A documentation can be found here: AM.WD Wiki
Sources
Contributors
hmarius, Luke092, maikebing, mishun
(ordered alphabetically ascending)
License
This library is released under the MIT License
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 net481 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETStandard 2.0
- AMWD.Protocols.Modbus.Common (>= 0.1.0)
- Microsoft.Extensions.Logging.Abstractions (>= 3.1.27)
- System.IO.Ports (>= 4.7.0)
-
net6.0
- AMWD.Protocols.Modbus.Common (>= 0.1.0)
- Microsoft.Extensions.Logging.Abstractions (>= 6.0.1)
- System.IO.Ports (>= 6.0.0)
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 |
---|---|---|
0.1.0 | 138 | 8/28/2022 |