node-opcua-nodeset-robotics 2.51.0

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.
Files changed (85) hide show
  1. package/LICENSE +20 -0
  2. package/dist/enum_axis_motion_profile.d.ts +43 -0
  3. package/dist/enum_axis_motion_profile.js +49 -0
  4. package/dist/enum_axis_motion_profile.js.map +1 -0
  5. package/dist/enum_execution_mode.d.ts +24 -0
  6. package/dist/enum_execution_mode.js +30 -0
  7. package/dist/enum_execution_mode.js.map +1 -0
  8. package/dist/enum_motion_device_category.d.ts +61 -0
  9. package/dist/enum_motion_device_category.js +67 -0
  10. package/dist/enum_motion_device_category.js.map +1 -0
  11. package/dist/enum_operational_mode.d.ts +35 -0
  12. package/dist/enum_operational_mode.js +41 -0
  13. package/dist/enum_operational_mode.js.map +1 -0
  14. package/dist/index.d.ts +19 -0
  15. package/dist/index.js +32 -0
  16. package/dist/index.js.map +1 -0
  17. package/dist/ua_auxiliary_component.d.ts +28 -0
  18. package/dist/ua_auxiliary_component.js +3 -0
  19. package/dist/ua_auxiliary_component.js.map +1 -0
  20. package/dist/ua_axis.d.ts +59 -0
  21. package/dist/ua_axis.js +3 -0
  22. package/dist/ua_axis.js.map +1 -0
  23. package/dist/ua_controller.d.ts +112 -0
  24. package/dist/ua_controller.js +3 -0
  25. package/dist/ua_controller.js.map +1 -0
  26. package/dist/ua_drive.d.ts +29 -0
  27. package/dist/ua_drive.js +3 -0
  28. package/dist/ua_drive.js.map +1 -0
  29. package/dist/ua_emergency_stop_function.d.ts +34 -0
  30. package/dist/ua_emergency_stop_function.js +3 -0
  31. package/dist/ua_emergency_stop_function.js.map +1 -0
  32. package/dist/ua_gear.d.ts +44 -0
  33. package/dist/ua_gear.js +3 -0
  34. package/dist/ua_gear.js.map +1 -0
  35. package/dist/ua_load.d.ts +52 -0
  36. package/dist/ua_load.js +3 -0
  37. package/dist/ua_load.js.map +1 -0
  38. package/dist/ua_motion_device.d.ts +95 -0
  39. package/dist/ua_motion_device.js +3 -0
  40. package/dist/ua_motion_device.js.map +1 -0
  41. package/dist/ua_motion_device_system.d.ts +35 -0
  42. package/dist/ua_motion_device_system.js +3 -0
  43. package/dist/ua_motion_device_system.js.map +1 -0
  44. package/dist/ua_motor.d.ts +57 -0
  45. package/dist/ua_motor.js +3 -0
  46. package/dist/ua_motor.js.map +1 -0
  47. package/dist/ua_power_train.d.ts +16 -0
  48. package/dist/ua_power_train.js +3 -0
  49. package/dist/ua_power_train.js.map +1 -0
  50. package/dist/ua_protective_stop_function.d.ts +0 -0
  51. package/dist/ua_protective_stop_function.js +3 -0
  52. package/dist/ua_protective_stop_function.js.map +1 -0
  53. package/dist/ua_safety_state.d.ts +71 -0
  54. package/dist/ua_safety_state.js +3 -0
  55. package/dist/ua_safety_state.js.map +1 -0
  56. package/dist/ua_task_control.d.ts +52 -0
  57. package/dist/ua_task_control.js +3 -0
  58. package/dist/ua_task_control.js.map +1 -0
  59. package/dist/ua_user.d.ts +31 -0
  60. package/dist/ua_user.js +3 -0
  61. package/dist/ua_user.js.map +1 -0
  62. package/package.json +23 -0
  63. package/pnpm-lock.yaml +21 -0
  64. package/source/enum_axis_motion_profile.ts +45 -0
  65. package/source/enum_execution_mode.ts +26 -0
  66. package/source/enum_motion_device_category.ts +63 -0
  67. package/source/enum_operational_mode.ts +37 -0
  68. package/source/index.ts +19 -0
  69. package/source/ua_auxiliary_component.ts +31 -0
  70. package/source/ua_axis.ts +60 -0
  71. package/source/ua_controller.ts +113 -0
  72. package/source/ua_drive.ts +30 -0
  73. package/source/ua_emergency_stop_function.ts +35 -0
  74. package/source/ua_gear.ts +45 -0
  75. package/source/ua_load.ts +53 -0
  76. package/source/ua_motion_device.ts +96 -0
  77. package/source/ua_motion_device_system.ts +51 -0
  78. package/source/ua_motor.ts +58 -0
  79. package/source/ua_power_train.ts +17 -0
  80. package/source/ua_protective_stop_function.ts +0 -0
  81. package/source/ua_safety_state.ts +72 -0
  82. package/source/ua_task_control.ts +53 -0
  83. package/source/ua_user.ts +32 -0
  84. package/tsconfig.json +25 -0
  85. package/tsconfig.tsbuildinfo +1 -0
package/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2014-2021 Etienne Rossignon
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
+ this software and associated documentation files (the "Software"), to deal in
7
+ the Software without restriction, including without limitation the rights to
8
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9
+ the Software, and to permit persons to whom the Software is furnished to do so,
10
+ subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,43 @@
1
+ /**
2
+ * | | |
3
+ * |-----------|--------------------------------------------------|
4
+ * | namespace |http://opcfoundation.org/UA/Robotics/ |
5
+ * | nodeClass |DataType |
6
+ * | name |7:AxisMotionProfileEnumeration |
7
+ * | isAbstract|false |
8
+ */
9
+ export declare enum EnumAxisMotionProfile {
10
+ /**
11
+ * Any motion-profile which is not defined by the
12
+ * AxisMotionProfileEnumeration.
13
+ */
14
+ OTHER = 0,
15
+ /**
16
+ * Rotary motion is a rotation along a circular path
17
+ * with defined limits. Motion movement is not going
18
+ * always in the same direction. Control unit is
19
+ * mainly degree.
20
+ */
21
+ ROTARY = 1,
22
+ /**
23
+ * Rotary motion is a rotation along a circular path
24
+ * with no limits. Motion movement is going endless
25
+ * in the same direction. Control unit is mainly
26
+ * degree.
27
+ */
28
+ ROTARY_ENDLESS = 2,
29
+ /**
30
+ * Linear motion is a one dimensional motion along a
31
+ * straight line with defined limits. Motion
32
+ * movement is not going always in the same
33
+ * direction. Control unit is mainly mm.
34
+ */
35
+ LINEAR = 3,
36
+ /**
37
+ * Linear motion is a one dimensional motion along a
38
+ * straight line with no limits. Motion movement is
39
+ * going endless in the same direction. Control unit
40
+ * is mainly mm.
41
+ */
42
+ LINEAR_ENDLESS = 4
43
+ }
@@ -0,0 +1,49 @@
1
+ "use strict";
2
+ // ----- this file has been automatically generated - do not edit
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.EnumAxisMotionProfile = void 0;
5
+ /**
6
+ * | | |
7
+ * |-----------|--------------------------------------------------|
8
+ * | namespace |http://opcfoundation.org/UA/Robotics/ |
9
+ * | nodeClass |DataType |
10
+ * | name |7:AxisMotionProfileEnumeration |
11
+ * | isAbstract|false |
12
+ */
13
+ var EnumAxisMotionProfile;
14
+ (function (EnumAxisMotionProfile) {
15
+ /**
16
+ * Any motion-profile which is not defined by the
17
+ * AxisMotionProfileEnumeration.
18
+ */
19
+ EnumAxisMotionProfile[EnumAxisMotionProfile["OTHER"] = 0] = "OTHER";
20
+ /**
21
+ * Rotary motion is a rotation along a circular path
22
+ * with defined limits. Motion movement is not going
23
+ * always in the same direction. Control unit is
24
+ * mainly degree.
25
+ */
26
+ EnumAxisMotionProfile[EnumAxisMotionProfile["ROTARY"] = 1] = "ROTARY";
27
+ /**
28
+ * Rotary motion is a rotation along a circular path
29
+ * with no limits. Motion movement is going endless
30
+ * in the same direction. Control unit is mainly
31
+ * degree.
32
+ */
33
+ EnumAxisMotionProfile[EnumAxisMotionProfile["ROTARY_ENDLESS"] = 2] = "ROTARY_ENDLESS";
34
+ /**
35
+ * Linear motion is a one dimensional motion along a
36
+ * straight line with defined limits. Motion
37
+ * movement is not going always in the same
38
+ * direction. Control unit is mainly mm.
39
+ */
40
+ EnumAxisMotionProfile[EnumAxisMotionProfile["LINEAR"] = 3] = "LINEAR";
41
+ /**
42
+ * Linear motion is a one dimensional motion along a
43
+ * straight line with no limits. Motion movement is
44
+ * going endless in the same direction. Control unit
45
+ * is mainly mm.
46
+ */
47
+ EnumAxisMotionProfile[EnumAxisMotionProfile["LINEAR_ENDLESS"] = 4] = "LINEAR_ENDLESS";
48
+ })(EnumAxisMotionProfile = exports.EnumAxisMotionProfile || (exports.EnumAxisMotionProfile = {}));
49
+ //# sourceMappingURL=enum_axis_motion_profile.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"enum_axis_motion_profile.js","sourceRoot":"","sources":["../source/enum_axis_motion_profile.ts"],"names":[],"mappings":";AAAA,iEAAiE;;;AAEjE;;;;;;;GAOG;AACH,IAAY,qBAkCX;AAlCD,WAAY,qBAAqB;IAC/B;;;OAGG;IACH,mEAAS,CAAA;IACT;;;;;OAKG;IACH,qEAAU,CAAA;IACV;;;;;OAKG;IACH,qFAAkB,CAAA;IAClB;;;;;OAKG;IACH,qEAAU,CAAA;IACV;;;;;OAKG;IACH,qFAAkB,CAAA;AACpB,CAAC,EAlCW,qBAAqB,GAArB,6BAAqB,KAArB,6BAAqB,QAkChC"}
@@ -0,0 +1,24 @@
1
+ /**
2
+ * | | |
3
+ * |-----------|--------------------------------------------------|
4
+ * | namespace |http://opcfoundation.org/UA/Robotics/ |
5
+ * | nodeClass |DataType |
6
+ * | name |7:ExecutionModeEnumeration |
7
+ * | isAbstract|false |
8
+ */
9
+ export declare enum EnumExecutionMode {
10
+ /**
11
+ * Single execution of a task program according to
12
+ * ISO 8373.
13
+ */
14
+ CYCLE = 0,
15
+ /**
16
+ * Task program is executed continuously and starts
17
+ * again automatically.
18
+ */
19
+ CONTINUOUS = 1,
20
+ /**
21
+ * Task program is executed in steps.
22
+ */
23
+ STEP = 2
24
+ }
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ // ----- this file has been automatically generated - do not edit
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.EnumExecutionMode = void 0;
5
+ /**
6
+ * | | |
7
+ * |-----------|--------------------------------------------------|
8
+ * | namespace |http://opcfoundation.org/UA/Robotics/ |
9
+ * | nodeClass |DataType |
10
+ * | name |7:ExecutionModeEnumeration |
11
+ * | isAbstract|false |
12
+ */
13
+ var EnumExecutionMode;
14
+ (function (EnumExecutionMode) {
15
+ /**
16
+ * Single execution of a task program according to
17
+ * ISO 8373.
18
+ */
19
+ EnumExecutionMode[EnumExecutionMode["CYCLE"] = 0] = "CYCLE";
20
+ /**
21
+ * Task program is executed continuously and starts
22
+ * again automatically.
23
+ */
24
+ EnumExecutionMode[EnumExecutionMode["CONTINUOUS"] = 1] = "CONTINUOUS";
25
+ /**
26
+ * Task program is executed in steps.
27
+ */
28
+ EnumExecutionMode[EnumExecutionMode["STEP"] = 2] = "STEP";
29
+ })(EnumExecutionMode = exports.EnumExecutionMode || (exports.EnumExecutionMode = {}));
30
+ //# sourceMappingURL=enum_execution_mode.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"enum_execution_mode.js","sourceRoot":"","sources":["../source/enum_execution_mode.ts"],"names":[],"mappings":";AAAA,iEAAiE;;;AAEjE;;;;;;;GAOG;AACH,IAAY,iBAeX;AAfD,WAAY,iBAAiB;IAC3B;;;OAGG;IACH,2DAAS,CAAA;IACT;;;OAGG;IACH,qEAAc,CAAA;IACd;;OAEG;IACH,yDAAQ,CAAA;AACV,CAAC,EAfW,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QAe5B"}
@@ -0,0 +1,61 @@
1
+ /**
2
+ * | | |
3
+ * |-----------|--------------------------------------------------|
4
+ * | namespace |http://opcfoundation.org/UA/Robotics/ |
5
+ * | nodeClass |DataType |
6
+ * | name |7:MotionDeviceCategoryEnumeration |
7
+ * | isAbstract|false |
8
+ */
9
+ export declare enum EnumMotionDeviceCategory {
10
+ /**
11
+ * Any MotionDevice which is not defined by the
12
+ * MotionDeviceCategoryEnumeration.
13
+ */
14
+ OTHER = 0,
15
+ /**
16
+ * This robot design features rotary joints and can
17
+ * range from simple two joint structures to 10 or
18
+ * more joints. The arm is connected to the base
19
+ * with a twisting joint. The links in the arm are
20
+ * connected by rotary joints.
21
+ */
22
+ ARTICULATED_ROBOT = 1,
23
+ /**
24
+ * The robot has two parallel rotary joints that
25
+ * ensure compliance in a specified plane.
26
+ */
27
+ SCARA_ROBOT = 2,
28
+ /**
29
+ * Cartesian robots have three linear joints that
30
+ * use the Cartesian coordinate system (X, Y, and
31
+ * Z). They also may have an attached wrist to allow
32
+ * for rotational movement. The three prismatic
33
+ * joints provide linear movement along the axis.
34
+ */
35
+ CARTESIAN_ROBOT = 3,
36
+ /**
37
+ * The arm is connected to the base with a twisting
38
+ * joint and a combination of two rotary joints and
39
+ * one linear joint. The axes form a polar
40
+ * coordinate system and create a spherical shaped
41
+ * work envelope.
42
+ */
43
+ SPHERICAL_ROBOT = 4,
44
+ /**
45
+ * These spider like robots are built from jointed
46
+ * parallelograms connected to a common base. The
47
+ * parallelograms move a single EOAT in a
48
+ * dome-shaped work area.
49
+ */
50
+ PARALLEL_ROBOT = 5,
51
+ /**
52
+ * The robot has at least one rotary joint at the
53
+ * base and at least one prismatic joint to connect
54
+ * the links. The rotary joint uses a rotational
55
+ * motion along the joint axis, while the prismatic
56
+ * joint moves in a linear motion. Cylindrical
57
+ * robots operate within a cylindrical-shaped work
58
+ * envelope.
59
+ */
60
+ CYLINDRICAL_ROBOT = 6
61
+ }
@@ -0,0 +1,67 @@
1
+ "use strict";
2
+ // ----- this file has been automatically generated - do not edit
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.EnumMotionDeviceCategory = void 0;
5
+ /**
6
+ * | | |
7
+ * |-----------|--------------------------------------------------|
8
+ * | namespace |http://opcfoundation.org/UA/Robotics/ |
9
+ * | nodeClass |DataType |
10
+ * | name |7:MotionDeviceCategoryEnumeration |
11
+ * | isAbstract|false |
12
+ */
13
+ var EnumMotionDeviceCategory;
14
+ (function (EnumMotionDeviceCategory) {
15
+ /**
16
+ * Any MotionDevice which is not defined by the
17
+ * MotionDeviceCategoryEnumeration.
18
+ */
19
+ EnumMotionDeviceCategory[EnumMotionDeviceCategory["OTHER"] = 0] = "OTHER";
20
+ /**
21
+ * This robot design features rotary joints and can
22
+ * range from simple two joint structures to 10 or
23
+ * more joints. The arm is connected to the base
24
+ * with a twisting joint. The links in the arm are
25
+ * connected by rotary joints.
26
+ */
27
+ EnumMotionDeviceCategory[EnumMotionDeviceCategory["ARTICULATED_ROBOT"] = 1] = "ARTICULATED_ROBOT";
28
+ /**
29
+ * The robot has two parallel rotary joints that
30
+ * ensure compliance in a specified plane.
31
+ */
32
+ EnumMotionDeviceCategory[EnumMotionDeviceCategory["SCARA_ROBOT"] = 2] = "SCARA_ROBOT";
33
+ /**
34
+ * Cartesian robots have three linear joints that
35
+ * use the Cartesian coordinate system (X, Y, and
36
+ * Z). They also may have an attached wrist to allow
37
+ * for rotational movement. The three prismatic
38
+ * joints provide linear movement along the axis.
39
+ */
40
+ EnumMotionDeviceCategory[EnumMotionDeviceCategory["CARTESIAN_ROBOT"] = 3] = "CARTESIAN_ROBOT";
41
+ /**
42
+ * The arm is connected to the base with a twisting
43
+ * joint and a combination of two rotary joints and
44
+ * one linear joint. The axes form a polar
45
+ * coordinate system and create a spherical shaped
46
+ * work envelope.
47
+ */
48
+ EnumMotionDeviceCategory[EnumMotionDeviceCategory["SPHERICAL_ROBOT"] = 4] = "SPHERICAL_ROBOT";
49
+ /**
50
+ * These spider like robots are built from jointed
51
+ * parallelograms connected to a common base. The
52
+ * parallelograms move a single EOAT in a
53
+ * dome-shaped work area.
54
+ */
55
+ EnumMotionDeviceCategory[EnumMotionDeviceCategory["PARALLEL_ROBOT"] = 5] = "PARALLEL_ROBOT";
56
+ /**
57
+ * The robot has at least one rotary joint at the
58
+ * base and at least one prismatic joint to connect
59
+ * the links. The rotary joint uses a rotational
60
+ * motion along the joint axis, while the prismatic
61
+ * joint moves in a linear motion. Cylindrical
62
+ * robots operate within a cylindrical-shaped work
63
+ * envelope.
64
+ */
65
+ EnumMotionDeviceCategory[EnumMotionDeviceCategory["CYLINDRICAL_ROBOT"] = 6] = "CYLINDRICAL_ROBOT";
66
+ })(EnumMotionDeviceCategory = exports.EnumMotionDeviceCategory || (exports.EnumMotionDeviceCategory = {}));
67
+ //# sourceMappingURL=enum_motion_device_category.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"enum_motion_device_category.js","sourceRoot":"","sources":["../source/enum_motion_device_category.ts"],"names":[],"mappings":";AAAA,iEAAiE;;;AAEjE;;;;;;;GAOG;AACH,IAAY,wBAoDX;AApDD,WAAY,wBAAwB;IAClC;;;OAGG;IACH,yEAAS,CAAA;IACT;;;;;;OAMG;IACH,iGAAqB,CAAA;IACrB;;;OAGG;IACH,qFAAe,CAAA;IACf;;;;;;OAMG;IACH,6FAAmB,CAAA;IACnB;;;;;;OAMG;IACH,6FAAmB,CAAA;IACnB;;;;;OAKG;IACH,2FAAkB,CAAA;IAClB;;;;;;;;OAQG;IACH,iGAAqB,CAAA;AACvB,CAAC,EApDW,wBAAwB,GAAxB,gCAAwB,KAAxB,gCAAwB,QAoDnC"}
@@ -0,0 +1,35 @@
1
+ /**
2
+ * | | |
3
+ * |-----------|--------------------------------------------------|
4
+ * | namespace |http://opcfoundation.org/UA/Robotics/ |
5
+ * | nodeClass |DataType |
6
+ * | name |7:OperationalModeEnumeration |
7
+ * | isAbstract|false |
8
+ */
9
+ export declare enum EnumOperationalMode {
10
+ /**
11
+ * Other for when there is a system-boot (unknown)
12
+ * or a failure of the safety, there is no valid
13
+ * operational mode.
14
+ */
15
+ OTHER = 0,
16
+ /**
17
+ * "Manual reduced speed" - name according to ISO
18
+ * 10218-1:2011.
19
+ */
20
+ MANUAL_REDUCED_SPEED = 1,
21
+ /**
22
+ * "Manual high speed" - name according to ISO
23
+ * 10218-1:2011.
24
+ */
25
+ MANUAL_HIGH_SPEED = 2,
26
+ /**
27
+ * "Automatic" - name according to ISO 10218-1:2011.
28
+ */
29
+ AUTOMATIC = 3,
30
+ /**
31
+ * "Automatic external" - Same as "Automatic" but
32
+ * with external control, e.g. by a PLC.
33
+ */
34
+ AUTOMATIC_EXTERNAL = 4
35
+ }
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ // ----- this file has been automatically generated - do not edit
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.EnumOperationalMode = void 0;
5
+ /**
6
+ * | | |
7
+ * |-----------|--------------------------------------------------|
8
+ * | namespace |http://opcfoundation.org/UA/Robotics/ |
9
+ * | nodeClass |DataType |
10
+ * | name |7:OperationalModeEnumeration |
11
+ * | isAbstract|false |
12
+ */
13
+ var EnumOperationalMode;
14
+ (function (EnumOperationalMode) {
15
+ /**
16
+ * Other for when there is a system-boot (unknown)
17
+ * or a failure of the safety, there is no valid
18
+ * operational mode.
19
+ */
20
+ EnumOperationalMode[EnumOperationalMode["OTHER"] = 0] = "OTHER";
21
+ /**
22
+ * "Manual reduced speed" - name according to ISO
23
+ * 10218-1:2011.
24
+ */
25
+ EnumOperationalMode[EnumOperationalMode["MANUAL_REDUCED_SPEED"] = 1] = "MANUAL_REDUCED_SPEED";
26
+ /**
27
+ * "Manual high speed" - name according to ISO
28
+ * 10218-1:2011.
29
+ */
30
+ EnumOperationalMode[EnumOperationalMode["MANUAL_HIGH_SPEED"] = 2] = "MANUAL_HIGH_SPEED";
31
+ /**
32
+ * "Automatic" - name according to ISO 10218-1:2011.
33
+ */
34
+ EnumOperationalMode[EnumOperationalMode["AUTOMATIC"] = 3] = "AUTOMATIC";
35
+ /**
36
+ * "Automatic external" - Same as "Automatic" but
37
+ * with external control, e.g. by a PLC.
38
+ */
39
+ EnumOperationalMode[EnumOperationalMode["AUTOMATIC_EXTERNAL"] = 4] = "AUTOMATIC_EXTERNAL";
40
+ })(EnumOperationalMode = exports.EnumOperationalMode || (exports.EnumOperationalMode = {}));
41
+ //# sourceMappingURL=enum_operational_mode.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"enum_operational_mode.js","sourceRoot":"","sources":["../source/enum_operational_mode.ts"],"names":[],"mappings":";AAAA,iEAAiE;;;AAEjE;;;;;;;GAOG;AACH,IAAY,mBA0BX;AA1BD,WAAY,mBAAmB;IAC7B;;;;OAIG;IACH,+DAAS,CAAA;IACT;;;OAGG;IACH,6FAAwB,CAAA;IACxB;;;OAGG;IACH,uFAAqB,CAAA;IACrB;;OAEG;IACH,uEAAa,CAAA;IACb;;;OAGG;IACH,yFAAsB,CAAA;AACxB,CAAC,EA1BW,mBAAmB,GAAnB,2BAAmB,KAAnB,2BAAmB,QA0B9B"}
@@ -0,0 +1,19 @@
1
+ export * from "./enum_axis_motion_profile";
2
+ export * from "./enum_execution_mode";
3
+ export * from "./enum_motion_device_category";
4
+ export * from "./enum_operational_mode";
5
+ export * from "./ua_auxiliary_component";
6
+ export * from "./ua_axis";
7
+ export * from "./ua_controller";
8
+ export * from "./ua_drive";
9
+ export * from "./ua_emergency_stop_function";
10
+ export * from "./ua_gear";
11
+ export * from "./ua_load";
12
+ export * from "./ua_motion_device";
13
+ export * from "./ua_motion_device_system";
14
+ export * from "./ua_motor";
15
+ export * from "./ua_power_train";
16
+ export * from "./ua_protective_stop_function";
17
+ export * from "./ua_safety_state";
18
+ export * from "./ua_task_control";
19
+ export * from "./ua_user";
package/dist/index.js ADDED
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
5
+ }) : (function(o, m, k, k2) {
6
+ if (k2 === undefined) k2 = k;
7
+ o[k2] = m[k];
8
+ }));
9
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
10
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
11
+ };
12
+ Object.defineProperty(exports, "__esModule", { value: true });
13
+ __exportStar(require("./enum_axis_motion_profile"), exports);
14
+ __exportStar(require("./enum_execution_mode"), exports);
15
+ __exportStar(require("./enum_motion_device_category"), exports);
16
+ __exportStar(require("./enum_operational_mode"), exports);
17
+ __exportStar(require("./ua_auxiliary_component"), exports);
18
+ __exportStar(require("./ua_axis"), exports);
19
+ __exportStar(require("./ua_controller"), exports);
20
+ __exportStar(require("./ua_drive"), exports);
21
+ __exportStar(require("./ua_emergency_stop_function"), exports);
22
+ __exportStar(require("./ua_gear"), exports);
23
+ __exportStar(require("./ua_load"), exports);
24
+ __exportStar(require("./ua_motion_device"), exports);
25
+ __exportStar(require("./ua_motion_device_system"), exports);
26
+ __exportStar(require("./ua_motor"), exports);
27
+ __exportStar(require("./ua_power_train"), exports);
28
+ __exportStar(require("./ua_protective_stop_function"), exports);
29
+ __exportStar(require("./ua_safety_state"), exports);
30
+ __exportStar(require("./ua_task_control"), exports);
31
+ __exportStar(require("./ua_user"), exports);
32
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../source/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6DAA2C;AAC3C,wDAAsC;AACtC,gEAA8C;AAC9C,0DAAwC;AACxC,2DAAyC;AACzC,4CAA0B;AAC1B,kDAAgC;AAChC,6CAA2B;AAC3B,+DAA6C;AAC7C,4CAA0B;AAC1B,4CAA0B;AAC1B,qDAAmC;AACnC,4DAA0C;AAC1C,6CAA2B;AAC3B,mDAAiC;AACjC,gEAA8C;AAC9C,oDAAkC;AAClC,oDAAkC;AAClC,4CAA0B"}
@@ -0,0 +1,28 @@
1
+ import { UAProperty } from "node-opcua-address-space-base";
2
+ import { DataType } from "node-opcua-variant";
3
+ import { UAString } from "node-opcua-basic-types";
4
+ import { UADevice, UADevice_Base } from "node-opcua-nodeset-di/source/ua_device";
5
+ /**
6
+ * Components mounted in a controller cabinet or a
7
+ * motion device e.g. an IO-board or a power supply.
8
+ *
9
+ * | | |
10
+ * |----------------|--------------------------------------------------|
11
+ * |namespace |http://opcfoundation.org/UA/Robotics/ |
12
+ * |nodeClass |ObjectType |
13
+ * |typedDefinition |7:AuxiliaryComponentType ns=7;i=17725 |
14
+ * |isAbstract |false |
15
+ */
16
+ export interface UAAuxiliaryComponent_Base extends UADevice_Base {
17
+ /**
18
+ * productCode
19
+ * The ProductCode property provides a unique
20
+ * combination of numbers and letters used to
21
+ * identify the product. It may be the order
22
+ * information displayed on type shields or in ERP
23
+ * systems.
24
+ */
25
+ productCode: UAProperty<UAString, /*z*/ DataType.String>;
26
+ }
27
+ export interface UAAuxiliaryComponent extends Omit<UADevice, "productCode">, UAAuxiliaryComponent_Base {
28
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=ua_auxiliary_component.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ua_auxiliary_component.js","sourceRoot":"","sources":["../source/ua_auxiliary_component.ts"],"names":[],"mappings":""}
@@ -0,0 +1,59 @@
1
+ import { UAObject, UAProperty } from "node-opcua-address-space-base";
2
+ import { DataType } from "node-opcua-variant";
3
+ import { UAAnalogUnit } from "node-opcua-nodeset-ua/source/ua_analog_unit";
4
+ import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component";
5
+ import { UALoad } from "./ua_load";
6
+ export interface UAAxis_parameterSet extends UAObject {
7
+ /**
8
+ * actualPosition
9
+ * The axis position inclusive Unit and
10
+ * RangeOfMotion.
11
+ */
12
+ actualPosition: UAAnalogUnit<number, /*z*/ DataType.Double>;
13
+ /**
14
+ * actualSpeed
15
+ * The axis speed on load side (after gear/spindle)
16
+ * inclusive Unit.
17
+ */
18
+ actualSpeed?: UAAnalogUnit<number, /*z*/ DataType.Double>;
19
+ /**
20
+ * actualAcceleration
21
+ * : The ActualAcceleration variable provides the
22
+ * axis acceleration. Applicable acceleration limits
23
+ * of the axis shall be provided by the EURange
24
+ * property of the AnalogUnitType.
25
+ */
26
+ actualAcceleration?: UAAnalogUnit<number, /*z*/ DataType.Double>;
27
+ }
28
+ /**
29
+ * The AxisType describes an axis of a motion device.
30
+ *
31
+ * | | |
32
+ * |----------------|--------------------------------------------------|
33
+ * |namespace |http://opcfoundation.org/UA/Robotics/ |
34
+ * |nodeClass |ObjectType |
35
+ * |typedDefinition |7:AxisType ns=7;i=16601 |
36
+ * |isAbstract |false |
37
+ */
38
+ export interface UAAxis_Base extends UAComponent_Base {
39
+ /**
40
+ * parameterSet
41
+ * Flat list of Parameters
42
+ */
43
+ parameterSet: UAAxis_parameterSet;
44
+ /**
45
+ * motionProfile
46
+ * The kind of axis motion as defined with the
47
+ * AxisMotionProfileEnumeration.
48
+ */
49
+ motionProfile: UAProperty<any, any>;
50
+ /**
51
+ * additionalLoad
52
+ * The additional load which is mounted on this
53
+ * axis. E.g. for process-need a transformer for
54
+ * welding.
55
+ */
56
+ additionalLoad?: UALoad;
57
+ }
58
+ export interface UAAxis extends Omit<UAComponent, "parameterSet">, UAAxis_Base {
59
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=ua_axis.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ua_axis.js","sourceRoot":"","sources":["../source/ua_axis.ts"],"names":[],"mappings":""}