Implementation of the basic functionallity

This commit is contained in:
2024-02-06 19:47:06 +01:00
parent a6c7828fbe
commit f31f6f94ff
42 changed files with 6875 additions and 11 deletions

View File

@@ -0,0 +1,28 @@
namespace AMWD.Protocols.Modbus.Common
{
/// <summary>
/// List of specific types.
/// </summary>
public enum ModbusObjectType
{
/// <summary>
/// The discrete value is a coil (read/write).
/// </summary>
Coil = 1,
/// <summary>
/// The discrete value is an input (read only).
/// </summary>
DiscreteInput = 2,
/// <summary>
/// The value is a holding register (read/write).
/// </summary>
HoldingRegister = 3,
/// <summary>
/// The value is an input register (read only).
/// </summary>
InputRegister = 4
}
}