21 lines
448 B
C#
21 lines
448 B
C#
///
|
|
/// Copyright (c) 2015-2021 Sensus Metering Systems
|
|
///
|
|
using System;
|
|
|
|
namespace TBF.Rig.Modbus
|
|
{
|
|
public enum Function : byte
|
|
{
|
|
ReadCoilStatus = 0x01,
|
|
ReadSingleInput = 0x02,
|
|
ReadHoldingRegisters = 0x03,
|
|
ReadInputRegister = 0x04,
|
|
ForceSingleCoil = 0x05,
|
|
PresetSingleRegister = 0x06,
|
|
ForceMultipleCoils = 0x0F,
|
|
PresetMultipleRegisters = 0x10,
|
|
Identification = 0x11,
|
|
}
|
|
}
|