Modbus.Net icon indicating copy to clipboard operation
Modbus.Net copied to clipboard

A high extensible hardware communication platform using C#

Results 13 Modbus.Net issues
Sort by recently updated
recently updated
newest added

Any info ,this library supports modbus tcp? All the functionality? Some documentation or maybe a readme file would be helpful.

For some reasons, old instantiation will be decrepted. Builder will be implemented sooner. DI will be in 2.0.

enhancement

I need some help to understand how your library works. I'm in the following condition I've to connect to a Modbus.Slave (which has been given to me) with a config...

Hello, It would be nice if you provide a guide in order to explain how to develop custom Modbus functions. Could it be possible? Thanks in advance.

Currently, Modbus.Net using await after sending messages. But this is a bug in fact. Problem is caused by error packages or passive messages that will caused message shifting. So it...

enhancement

https://github.com/parallelbgls/Modbus.Net/blob/d5bc2881c9029f54f42d93366382936d37118aff/Modbus.Net/src/Base.Common/TcpConnector.cs#L276 private readonly AsyncLock _mutex = new AsyncLock(); public async Task UseLockAsync() { // AsyncLock can be locked asynchronously using (await _mutex.LockAsync()) { // It's safe to await while the...

enhancement

**my code** var comPort = GetComPort(); //COM5 var slaveAddress = GetSlaveAddress(); //3 //var registerAddresses = GetRegisterAddresses(); var _utility = new ModbusUtility(ModbusType.Rtu, comPort, slaveAddress, 0, Endian.BigEndianLsb); await _utility.ConnectAsync(); while (true) {...

Replacement of hard-coded string "Production" to utilizing the constant Environments.Production provided by the ASP.NET Core framework. The change enhances the code quality by leveraging framework-provided constants, thereby making the solutions...