Init Repo

This commit is contained in:
2024-02-05 12:35:22 +01:00
commit a6c7828fbe
7 changed files with 1008 additions and 0 deletions

37
README.md Normal file
View File

@@ -0,0 +1,37 @@
# Modbus Protocol for .NET
Here you can find a basic implementation of the Modbus protocol.
## Package Overview
The project is divided into three parts.
To be mentioned at the beginning:
Only the clients are build very modular to fit any requirement reached on the first implementation back in 2018 ([see here](https://github.com/andreasAmMueller/Modbus)).
The server implementations will only cover their defaults!
### Common
Here you'll find all the common interfaces and base implementations for Modbus.
For example the default protocol versions: `TCP`, `RTU` and `ASCII`.
### Serial
Here you'll find all the serial protocol implementations.
### TCP
Here you'll find all the TCP protocol implementations.
---
Published under [MIT License](LICENSE.txt) (see [**tl;dr**Legal](https://www.tldrlegal.com/license/mit-license))