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.
- package/LICENSE +20 -0
- package/dist/enum_axis_motion_profile.d.ts +43 -0
- package/dist/enum_axis_motion_profile.js +49 -0
- package/dist/enum_axis_motion_profile.js.map +1 -0
- package/dist/enum_execution_mode.d.ts +24 -0
- package/dist/enum_execution_mode.js +30 -0
- package/dist/enum_execution_mode.js.map +1 -0
- package/dist/enum_motion_device_category.d.ts +61 -0
- package/dist/enum_motion_device_category.js +67 -0
- package/dist/enum_motion_device_category.js.map +1 -0
- package/dist/enum_operational_mode.d.ts +35 -0
- package/dist/enum_operational_mode.js +41 -0
- package/dist/enum_operational_mode.js.map +1 -0
- package/dist/index.d.ts +19 -0
- package/dist/index.js +32 -0
- package/dist/index.js.map +1 -0
- package/dist/ua_auxiliary_component.d.ts +28 -0
- package/dist/ua_auxiliary_component.js +3 -0
- package/dist/ua_auxiliary_component.js.map +1 -0
- package/dist/ua_axis.d.ts +59 -0
- package/dist/ua_axis.js +3 -0
- package/dist/ua_axis.js.map +1 -0
- package/dist/ua_controller.d.ts +112 -0
- package/dist/ua_controller.js +3 -0
- package/dist/ua_controller.js.map +1 -0
- package/dist/ua_drive.d.ts +29 -0
- package/dist/ua_drive.js +3 -0
- package/dist/ua_drive.js.map +1 -0
- package/dist/ua_emergency_stop_function.d.ts +34 -0
- package/dist/ua_emergency_stop_function.js +3 -0
- package/dist/ua_emergency_stop_function.js.map +1 -0
- package/dist/ua_gear.d.ts +44 -0
- package/dist/ua_gear.js +3 -0
- package/dist/ua_gear.js.map +1 -0
- package/dist/ua_load.d.ts +52 -0
- package/dist/ua_load.js +3 -0
- package/dist/ua_load.js.map +1 -0
- package/dist/ua_motion_device.d.ts +95 -0
- package/dist/ua_motion_device.js +3 -0
- package/dist/ua_motion_device.js.map +1 -0
- package/dist/ua_motion_device_system.d.ts +35 -0
- package/dist/ua_motion_device_system.js +3 -0
- package/dist/ua_motion_device_system.js.map +1 -0
- package/dist/ua_motor.d.ts +57 -0
- package/dist/ua_motor.js +3 -0
- package/dist/ua_motor.js.map +1 -0
- package/dist/ua_power_train.d.ts +16 -0
- package/dist/ua_power_train.js +3 -0
- package/dist/ua_power_train.js.map +1 -0
- package/dist/ua_protective_stop_function.d.ts +0 -0
- package/dist/ua_protective_stop_function.js +3 -0
- package/dist/ua_protective_stop_function.js.map +1 -0
- package/dist/ua_safety_state.d.ts +71 -0
- package/dist/ua_safety_state.js +3 -0
- package/dist/ua_safety_state.js.map +1 -0
- package/dist/ua_task_control.d.ts +52 -0
- package/dist/ua_task_control.js +3 -0
- package/dist/ua_task_control.js.map +1 -0
- package/dist/ua_user.d.ts +31 -0
- package/dist/ua_user.js +3 -0
- package/dist/ua_user.js.map +1 -0
- package/package.json +23 -0
- package/pnpm-lock.yaml +21 -0
- package/source/enum_axis_motion_profile.ts +45 -0
- package/source/enum_execution_mode.ts +26 -0
- package/source/enum_motion_device_category.ts +63 -0
- package/source/enum_operational_mode.ts +37 -0
- package/source/index.ts +19 -0
- package/source/ua_auxiliary_component.ts +31 -0
- package/source/ua_axis.ts +60 -0
- package/source/ua_controller.ts +113 -0
- package/source/ua_drive.ts +30 -0
- package/source/ua_emergency_stop_function.ts +35 -0
- package/source/ua_gear.ts +45 -0
- package/source/ua_load.ts +53 -0
- package/source/ua_motion_device.ts +96 -0
- package/source/ua_motion_device_system.ts +51 -0
- package/source/ua_motor.ts +58 -0
- package/source/ua_power_train.ts +17 -0
- package/source/ua_protective_stop_function.ts +0 -0
- package/source/ua_safety_state.ts +72 -0
- package/source/ua_task_control.ts +53 -0
- package/source/ua_user.ts +32 -0
- package/tsconfig.json +25 -0
- package/tsconfig.tsbuildinfo +1 -0
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import { DataType } from "node-opcua-variant";
|
|
3
|
+
import { LocalizedText } from "node-opcua-data-model";
|
|
4
|
+
import { UAString } from "node-opcua-basic-types";
|
|
5
|
+
import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable";
|
|
6
|
+
import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component";
|
|
7
|
+
export interface UATaskControl_parameterSet extends UAObject {
|
|
8
|
+
/**
|
|
9
|
+
* taskProgramName
|
|
10
|
+
* A customer given identifier for the task program.
|
|
11
|
+
*/
|
|
12
|
+
taskProgramName: UABaseDataVariable<UAString, /*z*/ DataType.String>;
|
|
13
|
+
/**
|
|
14
|
+
* taskProgramLoaded
|
|
15
|
+
* The TaskProgramLoaded variable is TRUE if a task
|
|
16
|
+
* program is loaded in the task control, FALSE
|
|
17
|
+
* otherwise.
|
|
18
|
+
*/
|
|
19
|
+
taskProgramLoaded: UABaseDataVariable<boolean, /*z*/ DataType.Boolean>;
|
|
20
|
+
/**
|
|
21
|
+
* executionMode
|
|
22
|
+
* Execution mode of the task control (continuous or
|
|
23
|
+
* step-wise).
|
|
24
|
+
*/
|
|
25
|
+
executionMode?: UABaseDataVariable<any, any>;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* Represents a specific task control active on the
|
|
29
|
+
* controller.
|
|
30
|
+
*
|
|
31
|
+
* | | |
|
|
32
|
+
* |----------------|--------------------------------------------------|
|
|
33
|
+
* |namespace |http://opcfoundation.org/UA/Robotics/ |
|
|
34
|
+
* |nodeClass |ObjectType |
|
|
35
|
+
* |typedDefinition |7:TaskControlType ns=7;i=1011 |
|
|
36
|
+
* |isAbstract |false |
|
|
37
|
+
*/
|
|
38
|
+
export interface UATaskControl_Base extends UAComponent_Base {
|
|
39
|
+
/**
|
|
40
|
+
* parameterSet
|
|
41
|
+
* Flat list of Parameters
|
|
42
|
+
*/
|
|
43
|
+
parameterSet: UATaskControl_parameterSet;
|
|
44
|
+
/**
|
|
45
|
+
* componentName
|
|
46
|
+
* A user writable name provided by the vendor,
|
|
47
|
+
* integrator or user of the device.
|
|
48
|
+
*/
|
|
49
|
+
componentName: UAProperty<LocalizedText, /*z*/ DataType.LocalizedText>;
|
|
50
|
+
}
|
|
51
|
+
export interface UATaskControl extends Omit<UAComponent, "parameterSet" | "componentName">, UATaskControl_Base {
|
|
52
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ua_task_control.js","sourceRoot":"","sources":["../source/ua_task_control.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { UAObject, UAProperty } from "node-opcua-address-space-base";
|
|
2
|
+
import { DataType } from "node-opcua-variant";
|
|
3
|
+
import { UAString } from "node-opcua-basic-types";
|
|
4
|
+
/**
|
|
5
|
+
* The UserType ObjectType describes information of
|
|
6
|
+
* the registered user groups within the control
|
|
7
|
+
* system.
|
|
8
|
+
*
|
|
9
|
+
* | | |
|
|
10
|
+
* |----------------|--------------------------------------------------|
|
|
11
|
+
* |namespace |http://opcfoundation.org/UA/Robotics/ |
|
|
12
|
+
* |nodeClass |ObjectType |
|
|
13
|
+
* |typedDefinition |7:UserType ns=7;i=18175 |
|
|
14
|
+
* |isAbstract |false |
|
|
15
|
+
*/
|
|
16
|
+
export interface UAUser_Base {
|
|
17
|
+
/**
|
|
18
|
+
* level
|
|
19
|
+
* The weight of the load mounted on one mounting
|
|
20
|
+
* point.
|
|
21
|
+
*/
|
|
22
|
+
level: UAProperty<UAString, /*z*/ DataType.String>;
|
|
23
|
+
/**
|
|
24
|
+
* name
|
|
25
|
+
* The name for the current user within the control
|
|
26
|
+
* system.
|
|
27
|
+
*/
|
|
28
|
+
name?: UAProperty<UAString, /*z*/ DataType.String>;
|
|
29
|
+
}
|
|
30
|
+
export interface UAUser extends UAObject, UAUser_Base {
|
|
31
|
+
}
|
package/dist/ua_user.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ua_user.js","sourceRoot":"","sources":["../source/ua_user.ts"],"names":[],"mappings":""}
|
package/package.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "node-opcua-nodeset-robotics",
|
|
3
|
+
"version": "2.51.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "tsc -b"
|
|
9
|
+
},
|
|
10
|
+
"author": "etienne.rossignon@sterfive.com",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"node-opcua-address-space-base": "2.51.0",
|
|
14
|
+
"node-opcua-basic-types": "2.51.0",
|
|
15
|
+
"node-opcua-data-access": "2.51.0",
|
|
16
|
+
"node-opcua-data-model": "2.51.0",
|
|
17
|
+
"node-opcua-nodeid": "2.51.0",
|
|
18
|
+
"node-opcua-nodeset-di": "2.51.0",
|
|
19
|
+
"node-opcua-nodeset-ua": "2.51.0",
|
|
20
|
+
"node-opcua-variant": "2.51.0"
|
|
21
|
+
},
|
|
22
|
+
"gitHead": "75feb111daf7ec65fa0111e4fa5beb8987fd4945"
|
|
23
|
+
}
|
package/pnpm-lock.yaml
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
lockfileVersion: 5.3
|
|
2
|
+
|
|
3
|
+
specifiers:
|
|
4
|
+
node-opcua-address-space-base: 2.50.0
|
|
5
|
+
node-opcua-basic-types: 2.47.0
|
|
6
|
+
node-opcua-data-access: 2.49.0
|
|
7
|
+
node-opcua-data-model: 2.49.0
|
|
8
|
+
node-opcua-nodeid: 2.45.0
|
|
9
|
+
node-opcua-nodeset-di: 2.50.0
|
|
10
|
+
node-opcua-nodeset-ua: 2.50.0
|
|
11
|
+
node-opcua-variant: 2.49.0
|
|
12
|
+
|
|
13
|
+
dependencies:
|
|
14
|
+
node-opcua-address-space-base: link:../node-opcua-address-space-base
|
|
15
|
+
node-opcua-basic-types: link:../node-opcua-basic-types
|
|
16
|
+
node-opcua-data-access: link:../node-opcua-data-access
|
|
17
|
+
node-opcua-data-model: link:../node-opcua-data-model
|
|
18
|
+
node-opcua-nodeid: link:../node-opcua-nodeid
|
|
19
|
+
node-opcua-nodeset-di: link:../node-opcua-nodeset-di
|
|
20
|
+
node-opcua-nodeset-ua: link:../node-opcua-nodeset-ua
|
|
21
|
+
node-opcua-variant: link:../node-opcua-variant
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
// ----- this file has been automatically generated - do not edit
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* | | |
|
|
5
|
+
* |-----------|--------------------------------------------------|
|
|
6
|
+
* | namespace |http://opcfoundation.org/UA/Robotics/ |
|
|
7
|
+
* | nodeClass |DataType |
|
|
8
|
+
* | name |7:AxisMotionProfileEnumeration |
|
|
9
|
+
* | isAbstract|false |
|
|
10
|
+
*/
|
|
11
|
+
export enum EnumAxisMotionProfile {
|
|
12
|
+
/**
|
|
13
|
+
* Any motion-profile which is not defined by the
|
|
14
|
+
* AxisMotionProfileEnumeration.
|
|
15
|
+
*/
|
|
16
|
+
OTHER = 0,
|
|
17
|
+
/**
|
|
18
|
+
* Rotary motion is a rotation along a circular path
|
|
19
|
+
* with defined limits. Motion movement is not going
|
|
20
|
+
* always in the same direction. Control unit is
|
|
21
|
+
* mainly degree.
|
|
22
|
+
*/
|
|
23
|
+
ROTARY = 1,
|
|
24
|
+
/**
|
|
25
|
+
* Rotary motion is a rotation along a circular path
|
|
26
|
+
* with no limits. Motion movement is going endless
|
|
27
|
+
* in the same direction. Control unit is mainly
|
|
28
|
+
* degree.
|
|
29
|
+
*/
|
|
30
|
+
ROTARY_ENDLESS = 2,
|
|
31
|
+
/**
|
|
32
|
+
* Linear motion is a one dimensional motion along a
|
|
33
|
+
* straight line with defined limits. Motion
|
|
34
|
+
* movement is not going always in the same
|
|
35
|
+
* direction. Control unit is mainly mm.
|
|
36
|
+
*/
|
|
37
|
+
LINEAR = 3,
|
|
38
|
+
/**
|
|
39
|
+
* Linear motion is a one dimensional motion along a
|
|
40
|
+
* straight line with no limits. Motion movement is
|
|
41
|
+
* going endless in the same direction. Control unit
|
|
42
|
+
* is mainly mm.
|
|
43
|
+
*/
|
|
44
|
+
LINEAR_ENDLESS = 4,
|
|
45
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
// ----- this file has been automatically generated - do not edit
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* | | |
|
|
5
|
+
* |-----------|--------------------------------------------------|
|
|
6
|
+
* | namespace |http://opcfoundation.org/UA/Robotics/ |
|
|
7
|
+
* | nodeClass |DataType |
|
|
8
|
+
* | name |7:ExecutionModeEnumeration |
|
|
9
|
+
* | isAbstract|false |
|
|
10
|
+
*/
|
|
11
|
+
export enum EnumExecutionMode {
|
|
12
|
+
/**
|
|
13
|
+
* Single execution of a task program according to
|
|
14
|
+
* ISO 8373.
|
|
15
|
+
*/
|
|
16
|
+
CYCLE = 0,
|
|
17
|
+
/**
|
|
18
|
+
* Task program is executed continuously and starts
|
|
19
|
+
* again automatically.
|
|
20
|
+
*/
|
|
21
|
+
CONTINUOUS = 1,
|
|
22
|
+
/**
|
|
23
|
+
* Task program is executed in steps.
|
|
24
|
+
*/
|
|
25
|
+
STEP = 2,
|
|
26
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
// ----- this file has been automatically generated - do not edit
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* | | |
|
|
5
|
+
* |-----------|--------------------------------------------------|
|
|
6
|
+
* | namespace |http://opcfoundation.org/UA/Robotics/ |
|
|
7
|
+
* | nodeClass |DataType |
|
|
8
|
+
* | name |7:MotionDeviceCategoryEnumeration |
|
|
9
|
+
* | isAbstract|false |
|
|
10
|
+
*/
|
|
11
|
+
export enum EnumMotionDeviceCategory {
|
|
12
|
+
/**
|
|
13
|
+
* Any MotionDevice which is not defined by the
|
|
14
|
+
* MotionDeviceCategoryEnumeration.
|
|
15
|
+
*/
|
|
16
|
+
OTHER = 0,
|
|
17
|
+
/**
|
|
18
|
+
* This robot design features rotary joints and can
|
|
19
|
+
* range from simple two joint structures to 10 or
|
|
20
|
+
* more joints. The arm is connected to the base
|
|
21
|
+
* with a twisting joint. The links in the arm are
|
|
22
|
+
* connected by rotary joints.
|
|
23
|
+
*/
|
|
24
|
+
ARTICULATED_ROBOT = 1,
|
|
25
|
+
/**
|
|
26
|
+
* The robot has two parallel rotary joints that
|
|
27
|
+
* ensure compliance in a specified plane.
|
|
28
|
+
*/
|
|
29
|
+
SCARA_ROBOT = 2,
|
|
30
|
+
/**
|
|
31
|
+
* Cartesian robots have three linear joints that
|
|
32
|
+
* use the Cartesian coordinate system (X, Y, and
|
|
33
|
+
* Z). They also may have an attached wrist to allow
|
|
34
|
+
* for rotational movement. The three prismatic
|
|
35
|
+
* joints provide linear movement along the axis.
|
|
36
|
+
*/
|
|
37
|
+
CARTESIAN_ROBOT = 3,
|
|
38
|
+
/**
|
|
39
|
+
* The arm is connected to the base with a twisting
|
|
40
|
+
* joint and a combination of two rotary joints and
|
|
41
|
+
* one linear joint. The axes form a polar
|
|
42
|
+
* coordinate system and create a spherical shaped
|
|
43
|
+
* work envelope.
|
|
44
|
+
*/
|
|
45
|
+
SPHERICAL_ROBOT = 4,
|
|
46
|
+
/**
|
|
47
|
+
* These spider like robots are built from jointed
|
|
48
|
+
* parallelograms connected to a common base. The
|
|
49
|
+
* parallelograms move a single EOAT in a
|
|
50
|
+
* dome-shaped work area.
|
|
51
|
+
*/
|
|
52
|
+
PARALLEL_ROBOT = 5,
|
|
53
|
+
/**
|
|
54
|
+
* The robot has at least one rotary joint at the
|
|
55
|
+
* base and at least one prismatic joint to connect
|
|
56
|
+
* the links. The rotary joint uses a rotational
|
|
57
|
+
* motion along the joint axis, while the prismatic
|
|
58
|
+
* joint moves in a linear motion. Cylindrical
|
|
59
|
+
* robots operate within a cylindrical-shaped work
|
|
60
|
+
* envelope.
|
|
61
|
+
*/
|
|
62
|
+
CYLINDRICAL_ROBOT = 6,
|
|
63
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
// ----- this file has been automatically generated - do not edit
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* | | |
|
|
5
|
+
* |-----------|--------------------------------------------------|
|
|
6
|
+
* | namespace |http://opcfoundation.org/UA/Robotics/ |
|
|
7
|
+
* | nodeClass |DataType |
|
|
8
|
+
* | name |7:OperationalModeEnumeration |
|
|
9
|
+
* | isAbstract|false |
|
|
10
|
+
*/
|
|
11
|
+
export enum EnumOperationalMode {
|
|
12
|
+
/**
|
|
13
|
+
* Other for when there is a system-boot (unknown)
|
|
14
|
+
* or a failure of the safety, there is no valid
|
|
15
|
+
* operational mode.
|
|
16
|
+
*/
|
|
17
|
+
OTHER = 0,
|
|
18
|
+
/**
|
|
19
|
+
* "Manual reduced speed" - name according to ISO
|
|
20
|
+
* 10218-1:2011.
|
|
21
|
+
*/
|
|
22
|
+
MANUAL_REDUCED_SPEED = 1,
|
|
23
|
+
/**
|
|
24
|
+
* "Manual high speed" - name according to ISO
|
|
25
|
+
* 10218-1:2011.
|
|
26
|
+
*/
|
|
27
|
+
MANUAL_HIGH_SPEED = 2,
|
|
28
|
+
/**
|
|
29
|
+
* "Automatic" - name according to ISO 10218-1:2011.
|
|
30
|
+
*/
|
|
31
|
+
AUTOMATIC = 3,
|
|
32
|
+
/**
|
|
33
|
+
* "Automatic external" - Same as "Automatic" but
|
|
34
|
+
* with external control, e.g. by a PLC.
|
|
35
|
+
*/
|
|
36
|
+
AUTOMATIC_EXTERNAL = 4,
|
|
37
|
+
}
|
package/source/index.ts
ADDED
|
@@ -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";
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
// ----- this file has been automatically generated - do not edit
|
|
2
|
+
import { UAProperty } from "node-opcua-address-space-base"
|
|
3
|
+
import { DataType, Variant } from "node-opcua-variant"
|
|
4
|
+
import { LocalizedText, QualifiedName } from "node-opcua-data-model"
|
|
5
|
+
import { Int32, UAString } from "node-opcua-basic-types"
|
|
6
|
+
import { DTArgument } from "node-opcua-nodeset-ua/source/dt_argument"
|
|
7
|
+
import { UADevice, UADevice_Base } from "node-opcua-nodeset-di/source/ua_device"
|
|
8
|
+
/**
|
|
9
|
+
* Components mounted in a controller cabinet or a
|
|
10
|
+
* motion device e.g. an IO-board or a power supply.
|
|
11
|
+
*
|
|
12
|
+
* | | |
|
|
13
|
+
* |----------------|--------------------------------------------------|
|
|
14
|
+
* |namespace |http://opcfoundation.org/UA/Robotics/ |
|
|
15
|
+
* |nodeClass |ObjectType |
|
|
16
|
+
* |typedDefinition |7:AuxiliaryComponentType ns=7;i=17725 |
|
|
17
|
+
* |isAbstract |false |
|
|
18
|
+
*/
|
|
19
|
+
export interface UAAuxiliaryComponent_Base extends UADevice_Base {
|
|
20
|
+
/**
|
|
21
|
+
* productCode
|
|
22
|
+
* The ProductCode property provides a unique
|
|
23
|
+
* combination of numbers and letters used to
|
|
24
|
+
* identify the product. It may be the order
|
|
25
|
+
* information displayed on type shields or in ERP
|
|
26
|
+
* systems.
|
|
27
|
+
*/
|
|
28
|
+
productCode: UAProperty<UAString, /*z*/DataType.String>;
|
|
29
|
+
}
|
|
30
|
+
export interface UAAuxiliaryComponent extends Omit<UADevice, "productCode">, UAAuxiliaryComponent_Base {
|
|
31
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
// ----- this file has been automatically generated - do not edit
|
|
2
|
+
import { UAObject, UAProperty } from "node-opcua-address-space-base"
|
|
3
|
+
import { DataType, Variant } from "node-opcua-variant"
|
|
4
|
+
import { UAAnalogUnit } from "node-opcua-nodeset-ua/source/ua_analog_unit"
|
|
5
|
+
import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component"
|
|
6
|
+
import { UALoad } from "./ua_load"
|
|
7
|
+
export interface UAAxis_parameterSet extends UAObject { // Object
|
|
8
|
+
/**
|
|
9
|
+
* actualPosition
|
|
10
|
+
* The axis position inclusive Unit and
|
|
11
|
+
* RangeOfMotion.
|
|
12
|
+
*/
|
|
13
|
+
actualPosition: UAAnalogUnit<number, /*z*/DataType.Double>;
|
|
14
|
+
/**
|
|
15
|
+
* actualSpeed
|
|
16
|
+
* The axis speed on load side (after gear/spindle)
|
|
17
|
+
* inclusive Unit.
|
|
18
|
+
*/
|
|
19
|
+
actualSpeed?: UAAnalogUnit<number, /*z*/DataType.Double>;
|
|
20
|
+
/**
|
|
21
|
+
* actualAcceleration
|
|
22
|
+
* : The ActualAcceleration variable provides the
|
|
23
|
+
* axis acceleration. Applicable acceleration limits
|
|
24
|
+
* of the axis shall be provided by the EURange
|
|
25
|
+
* property of the AnalogUnitType.
|
|
26
|
+
*/
|
|
27
|
+
actualAcceleration?: UAAnalogUnit<number, /*z*/DataType.Double>;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* The AxisType describes an axis of a motion device.
|
|
31
|
+
*
|
|
32
|
+
* | | |
|
|
33
|
+
* |----------------|--------------------------------------------------|
|
|
34
|
+
* |namespace |http://opcfoundation.org/UA/Robotics/ |
|
|
35
|
+
* |nodeClass |ObjectType |
|
|
36
|
+
* |typedDefinition |7:AxisType ns=7;i=16601 |
|
|
37
|
+
* |isAbstract |false |
|
|
38
|
+
*/
|
|
39
|
+
export interface UAAxis_Base extends UAComponent_Base {
|
|
40
|
+
/**
|
|
41
|
+
* parameterSet
|
|
42
|
+
* Flat list of Parameters
|
|
43
|
+
*/
|
|
44
|
+
parameterSet: UAAxis_parameterSet;
|
|
45
|
+
/**
|
|
46
|
+
* motionProfile
|
|
47
|
+
* The kind of axis motion as defined with the
|
|
48
|
+
* AxisMotionProfileEnumeration.
|
|
49
|
+
*/
|
|
50
|
+
motionProfile: UAProperty<any, any>;
|
|
51
|
+
/**
|
|
52
|
+
* additionalLoad
|
|
53
|
+
* The additional load which is mounted on this
|
|
54
|
+
* axis. E.g. for process-need a transformer for
|
|
55
|
+
* welding.
|
|
56
|
+
*/
|
|
57
|
+
additionalLoad?: UALoad;
|
|
58
|
+
}
|
|
59
|
+
export interface UAAxis extends Omit<UAComponent, "parameterSet">, UAAxis_Base {
|
|
60
|
+
}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
// ----- this file has been automatically generated - do not edit
|
|
2
|
+
import { UAObject, UAProperty } from "node-opcua-address-space-base"
|
|
3
|
+
import { DataType } from "node-opcua-variant"
|
|
4
|
+
import { LocalizedText } from "node-opcua-data-model"
|
|
5
|
+
import { UAString } from "node-opcua-basic-types"
|
|
6
|
+
import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable"
|
|
7
|
+
import { UAAnalogUnit } from "node-opcua-nodeset-ua/source/ua_analog_unit"
|
|
8
|
+
import { UAFolder } from "node-opcua-nodeset-ua/source/ua_folder"
|
|
9
|
+
import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component"
|
|
10
|
+
import { UAUser } from "./ua_user"
|
|
11
|
+
export interface UAController_parameterSet extends UAObject { // Object
|
|
12
|
+
/**
|
|
13
|
+
* totalPowerOnTime
|
|
14
|
+
* The total accumulated time the controller was
|
|
15
|
+
* powered on.
|
|
16
|
+
*/
|
|
17
|
+
totalPowerOnTime?: UABaseDataVariable<UAString, /*z*/DataType.String>;
|
|
18
|
+
/**
|
|
19
|
+
* startUpTime
|
|
20
|
+
* The date and time of the last start-up of the
|
|
21
|
+
* controller.
|
|
22
|
+
*/
|
|
23
|
+
startUpTime?: UABaseDataVariable<Date, /*z*/DataType.DateTime>;
|
|
24
|
+
/**
|
|
25
|
+
* upsState
|
|
26
|
+
* The vendor specific status of an integrated UPS
|
|
27
|
+
* or accumulator system.
|
|
28
|
+
*/
|
|
29
|
+
upsState?: UABaseDataVariable<UAString, /*z*/DataType.String>;
|
|
30
|
+
/**
|
|
31
|
+
* totalEnergyConsumption
|
|
32
|
+
* The total accumulated energy consumed by the
|
|
33
|
+
* motion devices related with this controller
|
|
34
|
+
* instance.
|
|
35
|
+
*/
|
|
36
|
+
totalEnergyConsumption?: UAAnalogUnit<number, /*z*/DataType.Double>;
|
|
37
|
+
/**
|
|
38
|
+
* cabinetFanSpeed
|
|
39
|
+
* The speed of the cabinet fan.
|
|
40
|
+
*/
|
|
41
|
+
cabinetFanSpeed?: UAAnalogUnit<number, /*z*/DataType.Double>;
|
|
42
|
+
/**
|
|
43
|
+
* cpUFanSpeed
|
|
44
|
+
* The speed of the CPU fan.
|
|
45
|
+
*/
|
|
46
|
+
cpUFanSpeed?: UAAnalogUnit<number, /*z*/DataType.Double>;
|
|
47
|
+
/**
|
|
48
|
+
* inputVoltage
|
|
49
|
+
* The input voltage of the controller which can be
|
|
50
|
+
* a configured value. To distinguish between an AC
|
|
51
|
+
* or DC supply the optional property Definition of
|
|
52
|
+
* the base type DataItemType shall be used.
|
|
53
|
+
*/
|
|
54
|
+
inputVoltage?: UAAnalogUnit<number, /*z*/DataType.Double>;
|
|
55
|
+
/**
|
|
56
|
+
* temperature
|
|
57
|
+
* The controller temperature given by a temperature
|
|
58
|
+
* sensor inside of the controller.
|
|
59
|
+
*/
|
|
60
|
+
temperature?: UAAnalogUnit<number, /*z*/DataType.Double>;
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* The ControllerType describes the control unit of
|
|
64
|
+
* motion devices. One motion device system can have
|
|
65
|
+
* one or more instances of the ControllerType.
|
|
66
|
+
*
|
|
67
|
+
* | | |
|
|
68
|
+
* |----------------|--------------------------------------------------|
|
|
69
|
+
* |namespace |http://opcfoundation.org/UA/Robotics/ |
|
|
70
|
+
* |nodeClass |ObjectType |
|
|
71
|
+
* |typedDefinition |7:ControllerType ns=7;i=1003 |
|
|
72
|
+
* |isAbstract |false |
|
|
73
|
+
*/
|
|
74
|
+
export interface UAController_Base extends UAComponent_Base {
|
|
75
|
+
/**
|
|
76
|
+
* parameterSet
|
|
77
|
+
* Flat list of Parameters
|
|
78
|
+
*/
|
|
79
|
+
parameterSet?: UAController_parameterSet;
|
|
80
|
+
manufacturer: UAProperty<LocalizedText, /*z*/DataType.LocalizedText>;
|
|
81
|
+
model: UAProperty<LocalizedText, /*z*/DataType.LocalizedText>;
|
|
82
|
+
productCode: UAProperty<UAString, /*z*/DataType.String>;
|
|
83
|
+
serialNumber: UAProperty<UAString, /*z*/DataType.String>;
|
|
84
|
+
/**
|
|
85
|
+
* currentUser
|
|
86
|
+
* The given name of the device.
|
|
87
|
+
*/
|
|
88
|
+
currentUser: UAUser;
|
|
89
|
+
/**
|
|
90
|
+
* components
|
|
91
|
+
* Components is a container for one or more
|
|
92
|
+
* instances of subtypes of ComponentType defined in
|
|
93
|
+
* OPC UA DI. The listed components are installed in
|
|
94
|
+
* the motion device system, e.g. a processing-unit,
|
|
95
|
+
* a power-supply, an IO-board or a drive, and have
|
|
96
|
+
* an electrical interface to the controller.
|
|
97
|
+
*/
|
|
98
|
+
components?: UAFolder;
|
|
99
|
+
/**
|
|
100
|
+
* software
|
|
101
|
+
* Software is a container for one or more instances
|
|
102
|
+
* of SoftwareType defined in OPC UA DI.
|
|
103
|
+
*/
|
|
104
|
+
software: UAFolder;
|
|
105
|
+
/**
|
|
106
|
+
* taskControls
|
|
107
|
+
* TaskControls is a container for one or more
|
|
108
|
+
* instances of TaskControlType.
|
|
109
|
+
*/
|
|
110
|
+
taskControls: UAFolder;
|
|
111
|
+
}
|
|
112
|
+
export interface UAController extends Omit<UAComponent, "parameterSet"|"manufacturer"|"model"|"productCode"|"serialNumber">, UAController_Base {
|
|
113
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
// ----- this file has been automatically generated - do not edit
|
|
2
|
+
import { UAProperty } from "node-opcua-address-space-base"
|
|
3
|
+
import { DataType } from "node-opcua-variant"
|
|
4
|
+
import { UAString } from "node-opcua-basic-types"
|
|
5
|
+
import { UADevice, UADevice_Base } from "node-opcua-nodeset-di/source/ua_device"
|
|
6
|
+
/**
|
|
7
|
+
* Drives (multi-slot or single-slot axis amplifier)
|
|
8
|
+
* mounted in a controller cabinet or a motion
|
|
9
|
+
* device.
|
|
10
|
+
*
|
|
11
|
+
* | | |
|
|
12
|
+
* |----------------|--------------------------------------------------|
|
|
13
|
+
* |namespace |http://opcfoundation.org/UA/Robotics/ |
|
|
14
|
+
* |nodeClass |ObjectType |
|
|
15
|
+
* |typedDefinition |7:DriveType ns=7;i=17793 |
|
|
16
|
+
* |isAbstract |false |
|
|
17
|
+
*/
|
|
18
|
+
export interface UADrive_Base extends UADevice_Base {
|
|
19
|
+
/**
|
|
20
|
+
* productCode
|
|
21
|
+
* The ProductCode property provides a unique
|
|
22
|
+
* combination of numbers and letters used to
|
|
23
|
+
* identify the product. It may be the order
|
|
24
|
+
* information displayed on type shields or in ERP
|
|
25
|
+
* systems.
|
|
26
|
+
*/
|
|
27
|
+
productCode: UAProperty<UAString, /*z*/DataType.String>;
|
|
28
|
+
}
|
|
29
|
+
export interface UADrive extends Omit<UADevice, "productCode">, UADrive_Base {
|
|
30
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
// ----- this file has been automatically generated - do not edit
|
|
2
|
+
import { UAObject, UAProperty } from "node-opcua-address-space-base"
|
|
3
|
+
import { DataType } from "node-opcua-variant"
|
|
4
|
+
import { UAString } from "node-opcua-basic-types"
|
|
5
|
+
import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable"
|
|
6
|
+
/**
|
|
7
|
+
* According to ISO 10218-1:2011 Ch.5.5.2 Emergency
|
|
8
|
+
* stop the robot shall have one or more emergency
|
|
9
|
+
* stop functions.
|
|
10
|
+
*
|
|
11
|
+
* | | |
|
|
12
|
+
* |----------------|--------------------------------------------------|
|
|
13
|
+
* |namespace |http://opcfoundation.org/UA/Robotics/ |
|
|
14
|
+
* |nodeClass |ObjectType |
|
|
15
|
+
* |typedDefinition |7:EmergencyStopFunctionType ns=7;i=17230 |
|
|
16
|
+
* |isAbstract |false |
|
|
17
|
+
*/
|
|
18
|
+
export interface UAEmergencyStopFunction_Base {
|
|
19
|
+
/**
|
|
20
|
+
* name
|
|
21
|
+
* The Name of the EmergencyStopFunctionType
|
|
22
|
+
* provides a manufacturer-specific emergency stop
|
|
23
|
+
* function identifier within the safety system.
|
|
24
|
+
*/
|
|
25
|
+
name: UAProperty<UAString, /*z*/DataType.String>;
|
|
26
|
+
/**
|
|
27
|
+
* active
|
|
28
|
+
* The Active variable is TRUE if this particular
|
|
29
|
+
* emergency stop function is active, e.g. that the
|
|
30
|
+
* emergency stop button is pressed, FALSE otherwise.
|
|
31
|
+
*/
|
|
32
|
+
active: UABaseDataVariable<boolean, /*z*/DataType.Boolean>;
|
|
33
|
+
}
|
|
34
|
+
export interface UAEmergencyStopFunction extends UAObject, UAEmergencyStopFunction_Base {
|
|
35
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
// ----- this file has been automatically generated - do not edit
|
|
2
|
+
import { UAProperty } from "node-opcua-address-space-base"
|
|
3
|
+
import { DataType } from "node-opcua-variant"
|
|
4
|
+
import { LocalizedText } from "node-opcua-data-model"
|
|
5
|
+
import { UAString } from "node-opcua-basic-types"
|
|
6
|
+
import { DTRationalNumber } from "node-opcua-nodeset-ua/source/dt_rational_number"
|
|
7
|
+
import { UARationalNumber } from "node-opcua-nodeset-ua/source/ua_rational_number"
|
|
8
|
+
import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable"
|
|
9
|
+
import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component"
|
|
10
|
+
/**
|
|
11
|
+
* The GearType describes a gear in a powertrain,
|
|
12
|
+
* e.g. a gear box or a spindle.
|
|
13
|
+
*
|
|
14
|
+
* | | |
|
|
15
|
+
* |----------------|--------------------------------------------------|
|
|
16
|
+
* |namespace |http://opcfoundation.org/UA/Robotics/ |
|
|
17
|
+
* |nodeClass |ObjectType |
|
|
18
|
+
* |typedDefinition |7:GearType ns=7;i=1022 |
|
|
19
|
+
* |isAbstract |false |
|
|
20
|
+
*/
|
|
21
|
+
export interface UAGear_Base extends UAComponent_Base {
|
|
22
|
+
manufacturer: UAProperty<LocalizedText, /*z*/DataType.LocalizedText>;
|
|
23
|
+
model: UAProperty<LocalizedText, /*z*/DataType.LocalizedText>;
|
|
24
|
+
productCode: UAProperty<UAString, /*z*/DataType.String>;
|
|
25
|
+
serialNumber: UAProperty<UAString, /*z*/DataType.String>;
|
|
26
|
+
/**
|
|
27
|
+
* gearRatio
|
|
28
|
+
* The transmission ratio of the gear expressed as a
|
|
29
|
+
* fraction as input velocity (motor side) by output
|
|
30
|
+
* velocity (load side).
|
|
31
|
+
*/
|
|
32
|
+
gearRatio: UARationalNumber<DTRationalNumber>;
|
|
33
|
+
/**
|
|
34
|
+
* pitch
|
|
35
|
+
* Pitch describes the distance covered in
|
|
36
|
+
* millimeters (mm) for linear motion per one
|
|
37
|
+
* revolution of the output side of the driving
|
|
38
|
+
* unit. Pitch is used in combination with GearRatio
|
|
39
|
+
* to describe the overall transmission from input
|
|
40
|
+
* to output of the gear.
|
|
41
|
+
*/
|
|
42
|
+
pitch?: UABaseDataVariable<number, /*z*/DataType.Double>;
|
|
43
|
+
}
|
|
44
|
+
export interface UAGear extends Omit<UAComponent, "manufacturer"|"model"|"productCode"|"serialNumber">, UAGear_Base {
|
|
45
|
+
}
|