Type
Modbus (TCP/UDP/Serial)
Connection String Options
Modbus TCP
Name |
Default Value |
Required |
Description |
|
Name |
Modbus TCP |
|||
Code |
|
|||
Maven Dependency |
<dependency> <groupId>org.apache.plc4x</groupId> <artifactId>plc4j-driver-modbus</artifactId> <version>0.12.0</version> </dependency> |
|||
Default Transport |
|
|||
Supported Transports |
|
|||
Config options: |
||||
|
INT |
5000 |
Default timeout for all types of requests. |
|
|
INT |
1 |
Unit-identifier or slave-id that identifies the target PLC (On RS485 multiple Modbus Devices can be listening). Defaults to 1. |
|
|
STRING |
4x00001:BOOL |
Simple address, that the driver will use to check, if the connection to a given device is active (Defaults to reading holding-register 1). |
|
|
STRING |
BIG_ENDIAN |
Default encoding used for transporting register values (Defaults to BIG_ENDIAN). |
|
|
INT |
2000 |
Maximum number of coils addressable in one request (Defaults to 2000) |
|
|
INT |
125 |
Maximum number of registers addressable in one request (Defaults to 125) |
|
Transport config options: |
||||
tcp |
||||
|
BOOLEAN |
false |
Should keep-alive packets be sent? |
|
|
BOOLEAN |
true |
Should packets be sent instantly or should we give the OS some time to aggregate data. |
|
|
INT |
1000 |
Timeout after which a connection will be treated as disconnected. |
Modbus RTU
Name |
Type |
Default Value |
Required |
Description |
Name |
Modbus RTU |
|||
Code |
|
|||
Maven Dependency |
<dependency> <groupId>org.apache.plc4x</groupId> <artifactId>plc4j-driver-modbus</artifactId> <version>0.12.0</version> </dependency> |
|||
Default Transport |
|
|||
Supported Transports |
|
|||
Config options: |
||||
|
INT |
5000 |
Default timeout for all types of requests. |
|
|
INT |
1 |
Unit-identifier or slave-id that identifies the target PLC (On RS485 multiple Modbus Devices can be listening). Defaults to 1. |
|
|
STRING |
BIG_ENDIAN |
Default encoding used for transporting register values (Defaults to BIG_ENDIAN). |
|
|
INT |
2000 |
Maximum number of coils addressable in one request (Defaults to 2000) |
|
|
INT |
125 |
Maximum number of registers addressable in one request (Defaults to 125) |
|
Transport config options: |
||||
tcp |
||||
|
BOOLEAN |
false |
Should keep-alive packets be sent? |
|
|
BOOLEAN |
true |
Should packets be sent instantly or should we give the OS some time to aggregate data. |
|
|
INT |
1000 |
Timeout after which a connection will be treated as disconnected. |
|
serial |
||||
|
INT |
57600 |
Baud-rate the serial port is set to. |
|
|
INT |
8 |
Number of data-bits used to send data. |
|
|
INT |
1 |
Number of stop-bits used to terminate data. |
|
|
STRING |
NO_PARITY |
Number of bits used to calculate data parity. |
Modbus ASCII
Name |
Type |
Default Value |
Required |
Description |
Name |
Modbus ASCII |
|||
Code |
|
|||
Maven Dependency |
<dependency> <groupId>org.apache.plc4x</groupId> <artifactId>plc4j-driver-modbus</artifactId> <version>0.12.0</version> </dependency> |
|||
Default Transport |
|
|||
Supported Transports |
|
|||
Config options: |
||||
|
INT |
5000 |
Default timeout for all types of requests. |
|
|
STRUCT |
1 |
Unit-identifier or slave-id that identifies the target PLC (On RS485 multiple Modbus Devices can be listening). Defaults to 1. |
|
|
STRING |
BIG_ENDIAN |
Default encoding used for transporting register values (Defaults to BIG_ENDIAN). |
|
|
INT |
2000 |
Maximum number of coils addressable in one request (Defaults to 2000) |
|
|
INT |
125 |
Maximum number of registers addressable in one request (Defaults to 125) |
|
Transport config options: |
||||
tcp |
||||
|
BOOLEAN |
false |
Should keep-alive packets be sent? |
|
|
BOOLEAN |
true |
Should packets be sent instantly or should we give the OS some time to aggregate data. |
|
|
INT |
1000 |
Timeout after which a connection will be treated as disconnected. |
|
serial |
||||
|
INT |
57600 |
Baud-rate the serial port is set to. |
|
|
INT |
8 |
Number of data-bits used to send data. |
|
|
INT |
1 |
Number of stop-bits used to terminate data. |
|
|
STRING |
NO_PARITY |
Number of bits used to calculate data parity. |
Supported Operations
Name | Value | Description |
---|---|---|
Supported Operations |
||
|
||
|
Individual Resource Address Format
Connection String
Modbus has the following connection string format:-
modbus-tcp:{transport}://{ip-address}:{port}?{options}
An example connection string would look like:-
modbus-tcp:tcp://127.0.0.1:502
Note the transport, port and option fields are optional.
General Format
In general all Modbus addresses have this format:
{memory-Area}{start-address}:{data-type}[{array-size}]:{name-value-tag-options}
If the array-size part is omitted, the size-default of 1
is assumed.
If the data-type part is omitted, it defaults to BOOL for Coils and Discrete Inputs and INT for input, holding and extended registers.
If the name-value-tag-options part is omitted, simply no configuration fine-tuning is applied.
Additionally address can contain tag configuration:
{unit-id: 123}
Specifying this value overrides value of default-unit-id
parameter specified at the connection string.
{byte-order: 'LITTLE_ENDIAN'}
With this, can the default byte-order be overridden on a per-tag basis. If not provided the default-byte-order from the connection string is used, or BIG_ENDIAN, if this is also not provided.
Memory Areas
There are a number of memory areas defined in the Modbus specification.
-
Discrete Input Area
-
Coil Area
-
Input Register Area
-
Holding Register
-
Extended Register Area
Name | Memory Area Aliases | Description | Bit-Size | Permissions | Starting Address |
---|---|---|---|---|---|
Discrete Input |
|
Boolean input value, usually representing a binary input to the PLC |
1 |
Read Only |
1 |
Coil |
|
Boolean value, usually representing a binary output from the PLC |
1 |
Read/Write |
1 |
Input Register |
|
Short input value, usually representing an analog input to the PLC |
16 |
Read Only |
1 |
Holding Register |
|
Short value, usually representing an analog output from the PLC |
16 |
Read/Write |
1 |
Extended Register |
|
Short value, |
16 |
Read/Write |
0 |
Initially the Modbus format allowed up to 10000 address to be specified or the discrete inputs, coils, input registers and holding registers. Later on, this was expanded to allow up 65536 address within each memory area (except the extended register area). When using the long address format i.e. input-registers:1 the addresses between 1 and 65535 are able to be specified. When using the shorter versions there are two formats available i.e. 30001 and 300001. With the shorter format 3XXXX being limited to between 30001 and 39999, while the longer format 3XXXXX being limited to between 300001 and 365535. These memory areas all start at address 1.
For the extended register area the addresses 0-99999 are able to be specified. These registers are mapped to file records with a length of 10000. Address 600000 corresponds to the first address in file record 0. Address 610000 is then the first address in the second file record and so on. It is noted that there is generally only 10 file records (600000 thru to 699999) however the spec allows for 65536 file records. Using the extended-register: format you are able to reference all of these, if the shorter format is used then it is limited to 699999. This memory area starts at address 0.
Data Types
The following data types are supported
-
BOOL (boolean)
-
SINT (int 8)
-
USINT (uint 8)
-
BYTE (uint 8)
-
INT (int 16)
-
UINT (uint 16)
-
WORD (uint 16)
-
DINT (int 32)
-
UDINT (uint 32)
-
DWORD (uint 32)
-
LINT (int 64)
-
ULINT (uint 64)
-
LWORD (uint 64)
-
REAL (float)
-
LREAL (double)
-
CHAR (char)
-
WCHAR (2 byte char)
Some useful tips
Most memory areas start at address 1, except for the extended register area which starts at 0. These are both mapped to 0x0000 when it is sent in the Modbus protocol.
The input, holding and extended registers consist of 16-bit registers while the discrete input and coil areas consist of bits.
The following Modbus function codes are supported:-
-
0x01 (Read Coils)
-
0x02 (Read Discrete Inputs)
-
0x03 (Read Holding Registers)
-
0x04 (Read Input Registers)
-
0x05 (Write Single Coil)
-
0x06 (Write Single Register)
-
0x0F (Write Multiple Coils)
-
0x10 (Write Multiple Registers)
-
0x14 (Read File Record)(Extended Register Read)
-
0x15 (Write File Record)(Extended Register Write)
Examples
To read 10 holding registers starting at address 20 and parse as Unsigned Integers the following examples are all valid.
-
holding-register:20:UINT[10]
-
400020:UINT[10]
-
4x00020:UINT[10]
-
40020:UINT[10]
-
4x0020:UINT[10]
To read 1 holding register at address 5678 the following examples are valid.
-
holding-register:5678
-
405678
-
4x05678
-
45678
-
4x5678
To read 1 holding register of unit 10 at address 5678 the following examples are valid.
-
holding-register:5678{unit-id: 10}
-
405678{unit-id: 10}
-
4x05678{unit-id: 10}
-
45678{unit-id: 10}
-
4x5678{unit-id: 10}
To read 10 extended registers starting at address 50 the following examples are valid.
-
extended-register:50[10]
-
600050[10]
-
6x00050[10]
-
60050[10]
-
6x0050[10]
This corresponds to addresses 50-59 in file record 1.
To read 10 extended registers starting at address 9995 the following examples are valid.
-
extended-register:9995[10]
-
609995[10]
-
6x09995[10]
-
69995[10]
-
6x9995[10]
This corresponds to addresses 9995-9999 in file record 1 and addresses 0-5 in file record 2. Note that this request is split into 2 sub requests in the Modbus protocol.