Modbus/TCP

ModbusTCP parameters follow these URL schemas:

modbus://<IP>/<Unit ID>/<Function Code>/<Value Type>/<ID>
modbus://<IP>/<Unit ID>/<Function Code>/<Value Type>/<ID>/<bit>

IP

IPv4 IP address of the Modbus device, you are trying to connect to. This must be on the same network as the LAN side of the INDAQ interface.

Unit ID

The address/location of the Modbus device you are trying to communicate with. This is typically 1 for most devices.

Function Code

Select which function code to use when communicating with the Modbus device.

Function NameFunction CodeDescription
Read Coil Status2Function used to read boolean values from the Modbus device.
Read Holding Registers3Function used to read from a holding registers, which are 16-bit registers that can be read and written to.1
Read Input Registers4Function used to read from input registers, which are 16-bit registers that can only be read from.

Value Type

The value type of the register you are trying to read from the Modbus device. This is used to determine how to interpret the raw value from the device. Since Modbus operates on 16 bit values, INDAQ will automatically pull as many registers as needed to satisfy the value type.

Value Type NameValue Type IdDescription
single bitu1A single bit value.
signed 16 bit integeri16A 16-bit signed integer.
unsigned 16 bit integeru16A 16-bit unsigned integer.
signed 32 bit integeri32A 32-bit signed integer.
unsigned 32 bit integeru32A 32-bit unsigned integer.
32 bit floating pointf32A 32-bit floating point number.

ID

The register id to read from the Modbus device. This is a 16 bit unsigned value, ranging from 1 to 65536.

Bit

When selecing the single bit value type, you can specify the bit to read from the register. This is a 0 based revsered index, which 0 indicating the least significant bit.

Footnotes

  1. INDAQ will not write to this register.

Was this page helpful?