Skip to content

Allen-Bradley DF1

DF1 is a proprietary communication protocol developed by Rockwell Automation, primarily used for data exchange between its Allen Bradley series PLCs (Programmable Logic Controllers) and other devices. The Neuron Allen Bradley DF1 plugin supports point-to-point communication and data transmission through serial communication lines.

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 Allen-Bradley DF1 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 northbound application. You can also click the device configuration icon on the southbound device card to enter the Device Configuration interface.

ParameterDescription
Recv TimeoutThe time of the system waits for a device to respond to a 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 PortThe path to the serial device when using a serial connection, e.g., /dev/ttyS0 in Linux systems.
Stop BitsSerial connection parameter.
ParitySerial connection parameter.
Baud RateSerial connection parameter.
Data SizeSerial connection parameter.

Configure Data Groups and Tags

After the plug-in 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

  • INT16
  • UINT16
  • INT32
  • UINT32
  • FLOAT
  • BIT
  • STRING

Address format

FILE NUM:ELEM[.BIT][#ENDIAN][.LEN[H][L]]

For example, N7:0

FILE

Required, File is the type or the file.

FILEFILE TYPE
USTATUS
BBIT
TTIMER
CCOUNTER
RCOUNTROL
NINTEGER
FFLOAT
SSTRING
AASCII

NUM

Required, NUM is the number or the file.

ELEM

Required, ELEM is the number or the elem.

.BIT

Optional, specify a specific bit in a register, as:

AddressData TypeDescription
N7:0.0bitRefers to INT FILE 7 , address 0, bit 0.
N7:0.15bitRefers to INT FILE 7 , address 0, bit 15.

#ENDIAN

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

SymbolByte OrderSupported Data TypesNote
#B2,1 or 8,7,6,5,4,3,2,1int16/uint16
#L1,2 or 1,2,3,4,5,6,7,8int16/uint16Default byte order if not specified
#LL1,2,3,4int32/uint32/floatDefault byte order if not specified
#LB2,1,4,3int32/uint32/float
#BB3,4,1,2int32/uint32/float
#BL4,3,2,1int32/uint32/float

.LEN[H][L]

When the data type is STRING, .LEN is a required field, indicating the number of bytes the string occupies. Each register contains two storage methods: H and L, as shown in the table below.

SymbolDescription
HOne register stores two bytes, with the high byte first
LOne register stores two bytes, with the low byte first

TIP

The address data for the T C R region is six bytes. The first two bytes can use bit or int16, uint16 types; The middle two bytes of data need to be of type int16 or uint16, with the address suffix added .PRE; The last two bytes of data should be of type int16 or uint16, with the address suffix added .ACC。 For example, T2:1.ACC

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.