Skip to content

HollySys Modbus RTU

The Neuron HollySys Modbus RTU plugin is for collecting HollySys PLC tags using the Modbus RTU protocol,

Add Device

Go to Configuration -> South Devices, then click Add Device to add the driver. Configure the following settings in the popup dialog box.

  • Name: The name of this device node.
  • Plugin: Select the HollySys Modbus RTU plugin.

Device Configuration

After clicking Create, you will be redirected to the Device Configuration page, where we will set up the parameters required for Neuron to establish a connection with the device. You can also click the device configuration icon on the southbound device card to enter the Device Configuration interface.

ParameterDescription
Physical LinkSelects the communication medium, either serial or Ethernet.
Connection TimeoutThe time the system waits for a device to respond to a command.
Maximum Retry TimesThe maximum number of retries after a failed attempt to send a read command.
Retry IntervalResend reading instruction interval(ms) after a failed attempt to send a read command.
Send IntervalThe waiting time between sending each read/write command. Some serial devices may discard certain commands if they receive consecutive commands in a short period of time.
Serial DeviceOnly needed in Serial mode, the path to the serial device when using a serial connection, e.g., /dev/ttyS0 in Linux systems.
Stop BitsOnly for the Serial mode, the serial connection parameter.
ParityOnly for the Serial mode, the serial connection parameter.
Baud RateOnly for the Serial mode, the serial connection parameter.
Data BitsOnly for the Serial mode, the serial connection parameter.
Connection ModeOnly for the Ethernet mode, you can choose Neuron as the TCP client or server.
IP AddressOnly for the Ethernet mode, the IP address of the device when using TCP connection with Neuron as the client, or the IP address of Neuron when using TCP connection with Neuron as the server. The default value is 0.0.0.0.
PortOnly for the Ethernet mode, the port number of the device when using TCP connection with Neuron as the client, or the port number of Neuron when using TCP connection with Neuron as the server.
Maximum Retry TimesThe maximum number of retries after a failed attempt to send a read command.
Retry IntervalResend reading instruction interval(ms) after a failed attempt to send a read command.

The HollySys Modbus RTU plugin configuration is similar to that of the Modbus RTU driver module.

Configure Data Groups and Tags

After the plugin is added and configured, the next step is to establish communication between your device and Neuron by adding groups and tags to the Southbound driver.

Once device configuration is completed, navigate to the South Devices page. Click on the device card or device row to access the Group List page. Here, you can create a new group by clicking on Create, then specifying the group name and data collection interval.

Upon successfully creating a group, click on its name to proceed to the Tag List page. This page allows you to add device tags for data collection. You'll need to provide information such as the tag address, attributes, and data type.

For information on general configuration items, see Connect to Southbound Devices. The subsequent section will concentrate on configurations specific to the driver.

Data types

  • BIT
  • BOOL
  • INT16
  • UINT16
  • WORD

Address format

SLAVE!ADDRESS[#ENDIAN]

The address format is nearly the same to that of the Modbus RTU driver module, the only difference is in the ADDRESS part.

SLAVE

Required, Slave is the slave address or site number.

ADDRESS

HollySys PLC maps data units onto the Modbus address space for access through the Modbus RTU protocol. The Neuron HollySys Modbus RTU plugin frees users from details of the address mapping, and designates the PLC data unit name as the ADDRESS.

AreaData unit exampleAttributeRegister SizeData Type
IX (Input)IX0.0 ... IX0.7, IX1.0 ... IX1.7 ...Read1BitBOOL/BIT
IW (Input Registers)IW0, IW1, ...Read16Bit,2ByteINT16/UINT16
QX (Coils)QX0.0 ... QX0.7, QX1.0 ... QX1.7 ...Read/Write1BitBOOL/BIT
QW (Hold Registers)QW0, QW1, ...Read/Write16Bit,2ByteINT16/UINT16
MX (Coils)MX0.0 ... MX0.7, MX1.0 ... MX1.7 ...Read/Write1BitBOOL/BIT
MW (Hold Registers)MW0, MW1, ...Read/Write16Bit,2ByteINT16/UINT16

#ENDIAN

Optional, byte order, applicable to data types int16/uint16, see the table below for details.

SymbolByte OrderSupported Data TypesNote
#B2,1int16/uint16
#L1,2int16/uint16Default byte order if not specified

TIP

The byte order can be illustrated using the notation ABCD, which corresponds directly to the sequence 1234. As an example, the ABCD designation represents the standard or default Endianness 1234. (#LL).

Example Addresses

AddressData TypeDescription
1!IX1.0bitData unit IX1.0 on slave 1, read only.
1!QW0int16Data unit QW0 on slave 1, support read/write.
2!MW1int16Data unit MW1 on slave 1, support read/write.

Data Monitoring

After completing the point configuration, you can click Monitoring -> Data Monitoring to view device information and control devices. For details, refer to Data Monitoring.