0

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?

Andrew Seaford
  • 645
  • 6
  • 13

2 Answers2

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#:

Dynamic Language Integration in a C# World

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