@kuriousdesign/machine-sdk 1.0.54 → 1.0.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -65,7 +65,7 @@ exports.GCs = {
|
|
|
65
65
|
NUM_PARTS_XFER: 10,
|
|
66
66
|
NUM_PARTS_IB: 51,
|
|
67
67
|
NUM_LOG_ENTRIES: 25,
|
|
68
|
-
TASK_LIST_LEN:
|
|
68
|
+
TASK_LIST_LEN: 50,
|
|
69
69
|
TASK_STORE_LEN: 125, //length of the array of stored (configured) tasks, the range of index 100 and greater are reserved for waypoints
|
|
70
70
|
TASK_LOG_LEN: 25,
|
|
71
71
|
STATION_COUNT: 6, //total number of designated areas that can hold parts: robot, raw shelf, preop, cnc, postop and done shelf
|
package/dist/plc-tags/index.js
CHANGED
|
@@ -45,8 +45,8 @@ exports.DeviceTags = {
|
|
|
45
45
|
Process: 'Process',
|
|
46
46
|
Script: 'Script',
|
|
47
47
|
Registration: 'Registration',
|
|
48
|
-
ApiOpcuaHmiReq: 'ApiOpcua
|
|
49
|
-
ApiOpcuaHmiResp: 'ApiOpcua
|
|
48
|
+
ApiOpcuaHmiReq: 'ApiOpcua.HmiReq',
|
|
49
|
+
ApiOpcuaHmiResp: 'ApiOpcua.HmiResp',
|
|
50
50
|
};
|
|
51
51
|
__exportStar(require("./opcua"), exports);
|
|
52
52
|
__exportStar(require("./mqtt"), exports);
|
package/package.json
CHANGED
|
@@ -77,7 +77,7 @@ export const GCs = {
|
|
|
77
77
|
NUM_PARTS_XFER: 10,
|
|
78
78
|
NUM_PARTS_IB: 51,
|
|
79
79
|
NUM_LOG_ENTRIES: 25,
|
|
80
|
-
TASK_LIST_LEN:
|
|
80
|
+
TASK_LIST_LEN: 50,
|
|
81
81
|
TASK_STORE_LEN: 125, //length of the array of stored (configured) tasks, the range of index 100 and greater are reserved for waypoints
|
|
82
82
|
TASK_LOG_LEN: 25,
|
|
83
83
|
STATION_COUNT: 6, //total number of designated areas that can hold parts: robot, raw shelf, preop, cnc, postop and done shelf
|
package/src/plc-tags/index.ts
CHANGED
|
@@ -30,8 +30,8 @@ export const DeviceTags = {
|
|
|
30
30
|
Process: 'Process',
|
|
31
31
|
Script: 'Script',
|
|
32
32
|
Registration: 'Registration',
|
|
33
|
-
ApiOpcuaHmiReq: 'ApiOpcua
|
|
34
|
-
ApiOpcuaHmiResp: 'ApiOpcua
|
|
33
|
+
ApiOpcuaHmiReq: 'ApiOpcua.HmiReq',
|
|
34
|
+
ApiOpcuaHmiResp: 'ApiOpcua.HmiResp',
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
export * from "./opcua";
|