EasyModbusTCP.NET icon indicating copy to clipboard operation
EasyModbusTCP.NET copied to clipboard

Modbus TCP, Modbus UDP and Modbus RTU client/server library for .NET implementations

Results 69 EasyModbusTCP.NET issues
Sort by recently updated
recently updated
newest added

It looks like, at least from my testing, that this library works with .NET Standard/.NET Core (2.1+). It just needs `System.IO.Ports` (4.5 in my testing) https://www.nuget.org/packages/System.IO.Ports/

Would be nice to have those so calls can be awaited. :)

TcpClient only supports ConnectAsync() in .NET Core. This requires that our .Connect() wrapper wait for the .ConnectAsync() call to complete before calling .GetStream(), so we will make the .Connect() method...

Hi, for each request, the code places a **transactionIdentifierInternal** (For synchronization between messages of server and client) which it then doesn't check in the responses for example: public int[] ReadHoldingRegisters(int...

Let's add the Read Device Information functionality to make world a better place.

I am trying to recover from connection losses (unplug cable, plug back in). **Symptom:** I get answers to old requests instead of the current one after the connection is reestablished....

Does this lib support ASCII protocol of Modbus RTU? RTU should have binary and Ascii both.

Hello, I have the following code: ModbusClient modbusClient = new ModbusClient(); void readdata(){ int[] adcvalue = modbusClient.ReadInputRegisters(15,1); } However, after calling the function for a second or a third time,...

I use the EasyModbus lib for communication with several modbus devices over RS485. The following happens quite regularly: - Modbus communication is up and running - All of a sudden...

In file ModbusServer.cs, line :388, when click accept button in setting page , clientConnectionThread is null, so it crashed. ` public void StopListening() { if (SerialFlag & (serialport != null))...