1
2
3
4
5
6
7
8
9
10
11
12
| /* eslint-disable */
|
| module.exports = {
| CONNECT_DEVICE: "connect_plc_device", // 连接设备
| DISCONNECT_DEVICE: "disconnect_plc_device", // 断开连接
| CONNECTION_STAT_DEVICE: "connection_stat_device", // 设备连接状态
| START_READ: "start_read", // 开启定时读取
| STOP_READ: "stop_read", // 开启定时读取
| ENABLE_LOOP_READ: "enable_loop_read", // 开启定时读取
| STOP_LOOP_READ: "stop_loop_read", // 开启定时读取
| SET_INTERVAL: "set_interval"
| }
|
|