I would like to develop a C# application to monitor a Sick PLC using modbus. I have an example program for talking to the PLC which is written in Python and uses the module pyModbus. Is there a C# nugget package that has the same functionality as pyModbus?
Asked
Active
Viewed 223 times
0
-
I had good experience with NModbus. – CSDev Mar 14 '19 at 11:01
2 Answers
0
It's not a Nuget package, but instead a full Visual Studio solution. AdvancedHMI includes a Modbus driver and also has lots of tools that will connect to the driver data without having to write code.
www.advancedhmi.com

Archie
- 91
- 3
0
Maybe not exactly what you are looking for but you can try libmodbus which is written in C and use it in your project:
How to create a DLL in C and use it in your C# project
Or since you're already familiar with pyModbus, maybe you can try to make it work with IronPython and call it from C#:

Marcos G.
- 3,371
- 2
- 8
- 16