namespace AMWD.Protocols.Modbus.Common { /// /// List of known object ids for Modbus device identification. /// public enum ModbusDeviceIdentificationObject : byte { /// /// The vendor name (mandatory). /// VendorName = 0x00, /// /// The product code (mandatory). /// ProductCode = 0x01, /// /// The version in major, minor and revision number (mandatory). /// MajorMinorRevision = 0x02, /// /// The vendor URL (optional). /// VendorUrl = 0x03, /// /// The product name (optional). /// ProductName = 0x04, /// /// The model name (optional). /// ModelName = 0x05, /// /// The application name (optional). /// UserApplicationName = 0x06 } }