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