Skip to content

Commit 1855f00

Browse files
authored
Merge pull request #523 from fengzeroz/master
ab 5000
2 parents e8ed66e + b23068e commit 1855f00

File tree

3 files changed

+113
-1
lines changed

3 files changed

+113
-1
lines changed

directory.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,10 @@
203203
"title": "EtherNet/IP(CIP)",
204204
"path": "configuration/south-devices/ethernet-ip/ethernet-ip"
205205
},
206+
{
207+
"title": "Allen-Bradley 5000 Serial",
208+
"path": "configuration/south-devices/ab-5000/ab-5000"
209+
},
206210
{
207211
"title": "Allen-Bradley ControlLogix 5500",
208212
"path": "configuration/south-devices/ab-5500/ab-5500"
@@ -873,6 +877,10 @@
873877
"title": "EtherNet/IP(CIP)",
874878
"path": "configuration/south-devices/ethernet-ip/ethernet-ip"
875879
},
880+
{
881+
"title": "Allen-Bradley 5000 Serial",
882+
"path": "configuration/south-devices/ab-5000/ab-5000"
883+
},
876884
{
877885
"title": "Allen-Bradley ControlLogix 5500",
878886
"path": "configuration/south-devices/ab-5500/ab-5500"
@@ -1335,4 +1343,4 @@
13351343
]
13361344
}
13371345
]
1338-
}
1346+
}
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# Allen-Bradley 5000 EtherNet/IP
2+
3+
Allen-Bradley 5000 EtherNet/IP is an upgraded and optimized version of Allen-Bradley ControlLogix 5500 driver, which is suitable for Allen-Bradley 5000 series PLC devices.
4+
5+
## Add Plugin
6+
7+
In **Configuration -> South Devices**, click **Add Device** to create a device node, enter the plugin name, and select **Allen-Bradley 5000 EtherNet/IP** as the plugin type to enable the plugin.
8+
9+
| Field | Description |
10+
| -------------- | -------------------------- |
11+
| PLC IP Address | Device ip |
12+
| PLC Port | Device port, default 44818 |
13+
14+
## Configure Data Groups and Tags
15+
16+
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.
17+
18+
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.
19+
20+
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.
21+
22+
For information on general configuration items, see [Connect to Southbound Devices](../south-devices.md). The subsequent section will concentrate on configurations specific to the driver.
23+
24+
### Data Types
25+
26+
* INT8
27+
* UINT8
28+
* INT16
29+
* UINT16
30+
* INT32
31+
* UINT32
32+
* INT64
33+
* UINT64
34+
* FLOAT
35+
* DOUBLE
36+
* BOOL
37+
* BIT
38+
* STRING
39+
* WORD
40+
* DWORD
41+
* LWORD
42+
43+
### Address Format
44+
45+
> TAG NAME
46+
47+
Connect to PLC with PLC software, the name of the point on the PLC is the address of the point in Neuron.
48+
49+
## Data Monitoring
50+
51+
After completing the point configuration, you can click **Monitoring** -> **Data Monitoring** to view device information and control devices. For details, refer to [Data Monitoring](../../../admin/monitoring.md).
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# Allen-Bradley 5000 EtherNet/IP
2+
3+
Allen-Bradley 5000 EtherNet/IP 是 Allen-Bradley ControlLogix 5500 驱动的升级优化版本,适用于 Allen-Bradley 5000 系列 PLC 设备,包括ControlLogix 55xx系列,以及CompactLogix 53xx系列等。
4+
5+
## 添加插件
6+
7+
**配置 -> 南向设备**,点击**添加设备**来创建设备节点,输入插件名称,插件类型选择 **Allen-Bradley 5000 EtherNet/IP** 启用插件。
8+
9+
## 设备配置
10+
11+
点击插件卡片或插件列,进入**设备配置**页。配置 Neuron 与设备建立连接所需的参数,下表为 Allen-Bradley 5000 相关的配置项。
12+
13+
| 字段 | 说明 |
14+
| ---- | --------------------- |
15+
| PLC IP 地址 | 设备 IP 地址 |
16+
| PLC 端口 | 设备端口,默认为 44818 |
17+
18+
## 设置组和点位
19+
20+
完成插件的添加和配置后,要建立设备与 Neuron 之间的通信,首先为南向驱动程序添加组和点位。
21+
22+
完成设备配置后,在**南向设备**页,点击设备卡片/设备列进入**组列表**页。点击**创建**来创建组,设定组名称以及采集间隔。完成组的创建后,点击组名称进入**点位列表**页,添加需要采集的设备点位,包括点位地址,点位属性,数据类型等。
23+
24+
公共配置项部分可参考[连接南向设备](../south-devices.md),本页将介绍支持的数据类型和地址格式部分。
25+
26+
### 数据类型
27+
28+
* INT8
29+
* UINT8
30+
* INT16
31+
* UINT16
32+
* INT32
33+
* UINT32
34+
* INT64
35+
* UINT64
36+
* FLOAT
37+
* DOUBLE
38+
* BOOL
39+
* BIT
40+
* STRING
41+
* WORD
42+
* DWORD
43+
* LWORD
44+
45+
### PLC 数据地址
46+
47+
> TAG NAME
48+
49+
使用 PLC 软件连接到 PLC,PLC 上点位的名称即为 Neuron 中点位地址。
50+
51+
## 数据监控
52+
53+
完成点位的配置后,您可点击 **监控** -> **数据监控**查看设备信息以及反控设备,具体可参考[数据监控](../../../admin/monitoring.md)

0 commit comments

Comments
 (0)