No description
Find a file
rquackenbush 13a454bdc8
Merge pull request #156 from Jeroen6/master
Fix UdpClient retries #155
2023-11-09 06:59:10 -05:00
.github/workflows Trying ubuntu 2023-08-21 07:51:09 -04:00
NModbus Fix UdpClient retries #155 2023-11-09 08:55:56 +01:00
NModbus.IntegrationTests Fixed ReadWriteMultipleRegister issue 2023-10-31 02:01:43 -04:00
NModbus.Serial Massive refactor. Added PR build. 2023-08-21 05:33:17 -04:00
NModbus.SerialPortStream Massive refactor. Added PR build. 2023-08-21 05:33:17 -04:00
NModbus.UnitTests Fixed issue 148 (RW of address 65535 of default slave not working) 2023-09-20 03:55:57 +02:00
Samples Massive refactor. Added PR build. 2023-08-21 05:33:17 -04:00
.gitignore no message 2018-03-26 09:22:30 -04:00
LICENSE.txt Prepare for the next dev iteration 2015-06-04 17:34:20 +03:00
NModbus.sln Massive refactor. Added PR build. 2023-08-21 05:33:17 -04:00
NuGet.config Migrate project files to .NET Core RTM 2016-06-27 23:55:44 +03:00
README.md Massive refactor. Added PR build. 2023-08-21 05:33:17 -04:00

NModbus

NModbus is a C# implementation of the Modbus protocol. Provides connectivity to Modbus slave compatible devices and applications. Supports serial ASCII, serial RTU, TCP, and UDP protocols.

History

The NModbus4 project appears to have gone quiet. This is a fork of that project.

NModbus differs from NModbus4 in following:

  • Modbus slave devices are now added to a network which is represented by IModbusSlaveInstance.
  • Heavier use of interfaces.
  • Custom function code handlers can be added to slave devices.

Goals

  • Improve Modbus Slave support (e.g. support multiple slave devices on the same physical transport).

Install

To install NModbus, run the following command in the Package Manager Console

PM> Install-Package NModbus

Documentation

Documentation is available here.

License

NModbus is licensed under the MIT license.