node-opcua-nodeset-robotics 2.76.0 → 2.76.2
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/dist/enum_axis_motion_profile.d.ts +43 -43
- package/dist/enum_axis_motion_profile.js +48 -48
- package/dist/enum_execution_mode.d.ts +24 -24
- package/dist/enum_execution_mode.js +29 -29
- package/dist/enum_motion_device_category.d.ts +61 -61
- package/dist/enum_motion_device_category.js +66 -66
- package/dist/enum_operational_mode.d.ts +35 -35
- package/dist/enum_operational_mode.js +40 -40
- package/dist/index.d.ts +19 -19
- package/dist/index.js +35 -35
- package/dist/ua_auxiliary_component.d.ts +28 -28
- package/dist/ua_auxiliary_component.js +2 -2
- package/dist/ua_axis.d.ts +60 -60
- package/dist/ua_axis.js +2 -2
- package/dist/ua_controller.d.ts +112 -112
- package/dist/ua_controller.js +2 -2
- package/dist/ua_drive.d.ts +29 -29
- package/dist/ua_drive.js +2 -2
- package/dist/ua_emergency_stop_function.d.ts +34 -34
- package/dist/ua_emergency_stop_function.js +2 -2
- package/dist/ua_gear.d.ts +44 -44
- package/dist/ua_gear.js +2 -2
- package/dist/ua_load.d.ts +52 -52
- package/dist/ua_load.js +2 -2
- package/dist/ua_motion_device.d.ts +96 -96
- package/dist/ua_motion_device.js +2 -2
- package/dist/ua_motion_device_system.d.ts +35 -35
- package/dist/ua_motion_device_system.js +2 -2
- package/dist/ua_motor.d.ts +57 -57
- package/dist/ua_motor.js +2 -2
- package/dist/ua_power_train.d.ts +15 -15
- package/dist/ua_power_train.js +2 -2
- package/dist/ua_protective_stop_function.d.ts +51 -51
- package/dist/ua_protective_stop_function.js +2 -2
- package/dist/ua_safety_state.d.ts +72 -72
- package/dist/ua_safety_state.js +2 -2
- package/dist/ua_task_control.d.ts +53 -53
- package/dist/ua_task_control.js +2 -2
- package/dist/ua_user.d.ts +31 -31
- package/dist/ua_user.js +2 -2
- package/package.json +10 -10
package/dist/ua_motor.d.ts
CHANGED
|
@@ -1,57 +1,57 @@
|
|
|
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 { UInt16, UAString } from "node-opcua-basic-types";
|
|
5
|
-
import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable";
|
|
6
|
-
import { UAAnalogUnit } from "node-opcua-nodeset-ua/source/ua_analog_unit";
|
|
7
|
-
import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component";
|
|
8
|
-
export interface UAMotor_parameterSet extends UAObject {
|
|
9
|
-
/**
|
|
10
|
-
* brakeReleased
|
|
11
|
-
* Indicates an optional variable used only for
|
|
12
|
-
* motors with brakes. If BrakeReleased is TRUE the
|
|
13
|
-
* motor is free to run. FALSE means that the motor
|
|
14
|
-
* shaft is locked by the brake.
|
|
15
|
-
*/
|
|
16
|
-
brakeReleased?: UABaseDataVariable<boolean, DataType.Boolean>;
|
|
17
|
-
/**
|
|
18
|
-
* motorTemperature
|
|
19
|
-
* The motor temperature provides the temperature of
|
|
20
|
-
* the motor. If there is no temperature sensor the
|
|
21
|
-
* value is set to \"null\".
|
|
22
|
-
*/
|
|
23
|
-
motorTemperature: UAAnalogUnit<number, DataType.Double>;
|
|
24
|
-
/**
|
|
25
|
-
* effectiveLoadRate
|
|
26
|
-
* EffectiveLoadRate is expressed as a percentage of
|
|
27
|
-
* maximum continuous load. The Joule integral is
|
|
28
|
-
* typically used to calculate the current load.
|
|
29
|
-
* Duration should be defined and documented by the
|
|
30
|
-
* vendor.
|
|
31
|
-
*/
|
|
32
|
-
effectiveLoadRate?: UABaseDataVariable<UInt16, DataType.UInt16>;
|
|
33
|
-
}
|
|
34
|
-
/**
|
|
35
|
-
* The MotorType is for representing instances of
|
|
36
|
-
* electric motors.
|
|
37
|
-
*
|
|
38
|
-
* | | |
|
|
39
|
-
* |----------------|--------------------------------------------------|
|
|
40
|
-
* |namespace |http://opcfoundation.org/UA/Robotics/ |
|
|
41
|
-
* |nodeClass |ObjectType |
|
|
42
|
-
* |typedDefinition |7:MotorType ns=7;i=1019 |
|
|
43
|
-
* |isAbstract |false |
|
|
44
|
-
*/
|
|
45
|
-
export interface UAMotor_Base extends UAComponent_Base {
|
|
46
|
-
/**
|
|
47
|
-
* parameterSet
|
|
48
|
-
* Flat list of Parameters
|
|
49
|
-
*/
|
|
50
|
-
parameterSet: UAMotor_parameterSet;
|
|
51
|
-
manufacturer: UAProperty<LocalizedText, DataType.LocalizedText>;
|
|
52
|
-
model: UAProperty<LocalizedText, DataType.LocalizedText>;
|
|
53
|
-
productCode: UAProperty<UAString, DataType.String>;
|
|
54
|
-
serialNumber: UAProperty<UAString, DataType.String>;
|
|
55
|
-
}
|
|
56
|
-
export interface UAMotor extends Omit<UAComponent, "parameterSet" | "manufacturer" | "model" | "productCode" | "serialNumber">, UAMotor_Base {
|
|
57
|
-
}
|
|
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 { UInt16, UAString } from "node-opcua-basic-types";
|
|
5
|
+
import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable";
|
|
6
|
+
import { UAAnalogUnit } from "node-opcua-nodeset-ua/source/ua_analog_unit";
|
|
7
|
+
import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component";
|
|
8
|
+
export interface UAMotor_parameterSet extends UAObject {
|
|
9
|
+
/**
|
|
10
|
+
* brakeReleased
|
|
11
|
+
* Indicates an optional variable used only for
|
|
12
|
+
* motors with brakes. If BrakeReleased is TRUE the
|
|
13
|
+
* motor is free to run. FALSE means that the motor
|
|
14
|
+
* shaft is locked by the brake.
|
|
15
|
+
*/
|
|
16
|
+
brakeReleased?: UABaseDataVariable<boolean, DataType.Boolean>;
|
|
17
|
+
/**
|
|
18
|
+
* motorTemperature
|
|
19
|
+
* The motor temperature provides the temperature of
|
|
20
|
+
* the motor. If there is no temperature sensor the
|
|
21
|
+
* value is set to \"null\".
|
|
22
|
+
*/
|
|
23
|
+
motorTemperature: UAAnalogUnit<number, DataType.Double>;
|
|
24
|
+
/**
|
|
25
|
+
* effectiveLoadRate
|
|
26
|
+
* EffectiveLoadRate is expressed as a percentage of
|
|
27
|
+
* maximum continuous load. The Joule integral is
|
|
28
|
+
* typically used to calculate the current load.
|
|
29
|
+
* Duration should be defined and documented by the
|
|
30
|
+
* vendor.
|
|
31
|
+
*/
|
|
32
|
+
effectiveLoadRate?: UABaseDataVariable<UInt16, DataType.UInt16>;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* The MotorType is for representing instances of
|
|
36
|
+
* electric motors.
|
|
37
|
+
*
|
|
38
|
+
* | | |
|
|
39
|
+
* |----------------|--------------------------------------------------|
|
|
40
|
+
* |namespace |http://opcfoundation.org/UA/Robotics/ |
|
|
41
|
+
* |nodeClass |ObjectType |
|
|
42
|
+
* |typedDefinition |7:MotorType ns=7;i=1019 |
|
|
43
|
+
* |isAbstract |false |
|
|
44
|
+
*/
|
|
45
|
+
export interface UAMotor_Base extends UAComponent_Base {
|
|
46
|
+
/**
|
|
47
|
+
* parameterSet
|
|
48
|
+
* Flat list of Parameters
|
|
49
|
+
*/
|
|
50
|
+
parameterSet: UAMotor_parameterSet;
|
|
51
|
+
manufacturer: UAProperty<LocalizedText, DataType.LocalizedText>;
|
|
52
|
+
model: UAProperty<LocalizedText, DataType.LocalizedText>;
|
|
53
|
+
productCode: UAProperty<UAString, DataType.String>;
|
|
54
|
+
serialNumber: UAProperty<UAString, DataType.String>;
|
|
55
|
+
}
|
|
56
|
+
export interface UAMotor extends Omit<UAComponent, "parameterSet" | "manufacturer" | "model" | "productCode" | "serialNumber">, UAMotor_Base {
|
|
57
|
+
}
|
package/dist/ua_motor.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
//# sourceMappingURL=ua_motor.js.map
|
package/dist/ua_power_train.d.ts
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component";
|
|
2
|
-
/**
|
|
3
|
-
* The PowerTrainType represents instances of
|
|
4
|
-
* powertrains of a motion device.
|
|
5
|
-
*
|
|
6
|
-
* | | |
|
|
7
|
-
* |----------------|--------------------------------------------------|
|
|
8
|
-
* |namespace |http://opcfoundation.org/UA/Robotics/ |
|
|
9
|
-
* |nodeClass |ObjectType |
|
|
10
|
-
* |typedDefinition |7:PowerTrainType ns=7;i=16794 |
|
|
11
|
-
* |isAbstract |false |
|
|
12
|
-
*/
|
|
13
|
-
export declare type UAPowerTrain_Base = UAComponent_Base;
|
|
14
|
-
export interface UAPowerTrain extends UAComponent, UAPowerTrain_Base {
|
|
15
|
-
}
|
|
1
|
+
import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component";
|
|
2
|
+
/**
|
|
3
|
+
* The PowerTrainType represents instances of
|
|
4
|
+
* powertrains of a motion device.
|
|
5
|
+
*
|
|
6
|
+
* | | |
|
|
7
|
+
* |----------------|--------------------------------------------------|
|
|
8
|
+
* |namespace |http://opcfoundation.org/UA/Robotics/ |
|
|
9
|
+
* |nodeClass |ObjectType |
|
|
10
|
+
* |typedDefinition |7:PowerTrainType ns=7;i=16794 |
|
|
11
|
+
* |isAbstract |false |
|
|
12
|
+
*/
|
|
13
|
+
export declare type UAPowerTrain_Base = UAComponent_Base;
|
|
14
|
+
export interface UAPowerTrain extends UAComponent, UAPowerTrain_Base {
|
|
15
|
+
}
|
package/dist/ua_power_train.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
//# sourceMappingURL=ua_power_train.js.map
|
|
@@ -1,51 +1,51 @@
|
|
|
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
|
-
import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable";
|
|
5
|
-
/**
|
|
6
|
-
* According to ISO 10218-1:2011 Ch.5.5.3 the robot
|
|
7
|
-
* shall have one or more protective stop functions
|
|
8
|
-
* designed for the connection of external
|
|
9
|
-
* protective devices.
|
|
10
|
-
*
|
|
11
|
-
* | | |
|
|
12
|
-
* |----------------|--------------------------------------------------|
|
|
13
|
-
* |namespace |http://opcfoundation.org/UA/Robotics/ |
|
|
14
|
-
* |nodeClass |ObjectType |
|
|
15
|
-
* |typedDefinition |7:ProtectiveStopFunctionType ns=7;i=17233 |
|
|
16
|
-
* |isAbstract |false |
|
|
17
|
-
*/
|
|
18
|
-
export interface UAProtectiveStopFunction_Base {
|
|
19
|
-
/**
|
|
20
|
-
* name
|
|
21
|
-
* The Name of the ProtectiveStopFunctionType
|
|
22
|
-
* provides a manufacturer-specific protective stop
|
|
23
|
-
* function identifier within the safety system.
|
|
24
|
-
*/
|
|
25
|
-
name: UAProperty<UAString, DataType.String>;
|
|
26
|
-
/**
|
|
27
|
-
* enabled
|
|
28
|
-
* – The Enabled variable is TRUE if this
|
|
29
|
-
* protective stop function is currently supervising
|
|
30
|
-
* the system, FALSE otherwise. A protective stop
|
|
31
|
-
* function may or may not be enabled at all times,
|
|
32
|
-
* e.g. the protective stop function of the safety
|
|
33
|
-
* doors are typically enabled in automatic
|
|
34
|
-
* operational mode and disabled in manual mode. On
|
|
35
|
-
* the other hand for example, the protective stop
|
|
36
|
-
* function of the teach pendant enabling device is
|
|
37
|
-
* enabled in manual modes and disabled in automatic
|
|
38
|
-
* modes.
|
|
39
|
-
*/
|
|
40
|
-
enabled: UABaseDataVariable<boolean, DataType.Boolean>;
|
|
41
|
-
/**
|
|
42
|
-
* active
|
|
43
|
-
* – The Active variable is TRUE if this
|
|
44
|
-
* particular protective stop function is active,
|
|
45
|
-
* i.e. that a stop is initiated, FALSE otherwise.
|
|
46
|
-
* If Enabled is FALSE then Active shall be FALSE.
|
|
47
|
-
*/
|
|
48
|
-
active: UABaseDataVariable<boolean, DataType.Boolean>;
|
|
49
|
-
}
|
|
50
|
-
export interface UAProtectiveStopFunction extends UAObject, UAProtectiveStopFunction_Base {
|
|
51
|
-
}
|
|
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
|
+
import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable";
|
|
5
|
+
/**
|
|
6
|
+
* According to ISO 10218-1:2011 Ch.5.5.3 the robot
|
|
7
|
+
* shall have one or more protective stop functions
|
|
8
|
+
* designed for the connection of external
|
|
9
|
+
* protective devices.
|
|
10
|
+
*
|
|
11
|
+
* | | |
|
|
12
|
+
* |----------------|--------------------------------------------------|
|
|
13
|
+
* |namespace |http://opcfoundation.org/UA/Robotics/ |
|
|
14
|
+
* |nodeClass |ObjectType |
|
|
15
|
+
* |typedDefinition |7:ProtectiveStopFunctionType ns=7;i=17233 |
|
|
16
|
+
* |isAbstract |false |
|
|
17
|
+
*/
|
|
18
|
+
export interface UAProtectiveStopFunction_Base {
|
|
19
|
+
/**
|
|
20
|
+
* name
|
|
21
|
+
* The Name of the ProtectiveStopFunctionType
|
|
22
|
+
* provides a manufacturer-specific protective stop
|
|
23
|
+
* function identifier within the safety system.
|
|
24
|
+
*/
|
|
25
|
+
name: UAProperty<UAString, DataType.String>;
|
|
26
|
+
/**
|
|
27
|
+
* enabled
|
|
28
|
+
* – The Enabled variable is TRUE if this
|
|
29
|
+
* protective stop function is currently supervising
|
|
30
|
+
* the system, FALSE otherwise. A protective stop
|
|
31
|
+
* function may or may not be enabled at all times,
|
|
32
|
+
* e.g. the protective stop function of the safety
|
|
33
|
+
* doors are typically enabled in automatic
|
|
34
|
+
* operational mode and disabled in manual mode. On
|
|
35
|
+
* the other hand for example, the protective stop
|
|
36
|
+
* function of the teach pendant enabling device is
|
|
37
|
+
* enabled in manual modes and disabled in automatic
|
|
38
|
+
* modes.
|
|
39
|
+
*/
|
|
40
|
+
enabled: UABaseDataVariable<boolean, DataType.Boolean>;
|
|
41
|
+
/**
|
|
42
|
+
* active
|
|
43
|
+
* – The Active variable is TRUE if this
|
|
44
|
+
* particular protective stop function is active,
|
|
45
|
+
* i.e. that a stop is initiated, FALSE otherwise.
|
|
46
|
+
* If Enabled is FALSE then Active shall be FALSE.
|
|
47
|
+
*/
|
|
48
|
+
active: UABaseDataVariable<boolean, DataType.Boolean>;
|
|
49
|
+
}
|
|
50
|
+
export interface UAProtectiveStopFunction extends UAObject, UAProtectiveStopFunction_Base {
|
|
51
|
+
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
//# sourceMappingURL=ua_protective_stop_function.js.map
|
|
@@ -1,72 +1,72 @@
|
|
|
1
|
-
import { UAObject } from "node-opcua-address-space-base";
|
|
2
|
-
import { DataType } from "node-opcua-variant";
|
|
3
|
-
import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable";
|
|
4
|
-
import { UAFolder } from "node-opcua-nodeset-ua/source/ua_folder";
|
|
5
|
-
import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component";
|
|
6
|
-
import { EnumOperationalMode } from "./enum_operational_mode";
|
|
7
|
-
export interface UASafetyState_parameterSet extends UAObject {
|
|
8
|
-
/**
|
|
9
|
-
* operationalMode
|
|
10
|
-
* The OperationalMode variable provides information
|
|
11
|
-
* about the current operational mode. Allowed
|
|
12
|
-
* values are described in
|
|
13
|
-
* OperationalModeEnumeration, see ISO 10218-1:2011
|
|
14
|
-
* Ch.5.7 Operational Modes.
|
|
15
|
-
*/
|
|
16
|
-
operationalMode: UABaseDataVariable<EnumOperationalMode, DataType.Int32>;
|
|
17
|
-
/**
|
|
18
|
-
* emergencyStop
|
|
19
|
-
* The EmergencyStop variable is TRUE if one or more
|
|
20
|
-
* of the emergency stop functions in the robot
|
|
21
|
-
* system are active, FALSE otherwise. If the
|
|
22
|
-
* EmergencyStopFunctions object is provided, then
|
|
23
|
-
* the value of this variable is TRUE if one or more
|
|
24
|
-
* of the listed emergency stop functions are active.
|
|
25
|
-
*/
|
|
26
|
-
emergencyStop: UABaseDataVariable<boolean, DataType.Boolean>;
|
|
27
|
-
/**
|
|
28
|
-
* protectiveStop
|
|
29
|
-
* The ProtectiveStop variable is TRUE if one or
|
|
30
|
-
* more of the enabled protective stop functions in
|
|
31
|
-
* the system are active, FALSE otherwise. If the
|
|
32
|
-
* ProtectiveStopFunctions object is provided, then
|
|
33
|
-
* the value of this variable is TRUE if one or more
|
|
34
|
-
* of the listed protective stop functions are
|
|
35
|
-
* enabled and active.
|
|
36
|
-
*/
|
|
37
|
-
protectiveStop: UABaseDataVariable<boolean, DataType.Boolean>;
|
|
38
|
-
}
|
|
39
|
-
/**
|
|
40
|
-
* SafetyStateType describes the safety states of
|
|
41
|
-
* the motion devices and controllers. One motion
|
|
42
|
-
* device system is associated with one or more
|
|
43
|
-
* instances of the SafetyStateType.
|
|
44
|
-
*
|
|
45
|
-
* | | |
|
|
46
|
-
* |----------------|--------------------------------------------------|
|
|
47
|
-
* |namespace |http://opcfoundation.org/UA/Robotics/ |
|
|
48
|
-
* |nodeClass |ObjectType |
|
|
49
|
-
* |typedDefinition |7:SafetyStateType ns=7;i=1013 |
|
|
50
|
-
* |isAbstract |false |
|
|
51
|
-
*/
|
|
52
|
-
export interface UASafetyState_Base extends UAComponent_Base {
|
|
53
|
-
/**
|
|
54
|
-
* parameterSet
|
|
55
|
-
* Flat list of Parameters
|
|
56
|
-
*/
|
|
57
|
-
parameterSet: UASafetyState_parameterSet;
|
|
58
|
-
/**
|
|
59
|
-
* emergencyStopFunctions
|
|
60
|
-
* EmergencyStopFunctions is a container for one or
|
|
61
|
-
* more instances of the EmergencyStopFunctionType.
|
|
62
|
-
*/
|
|
63
|
-
emergencyStopFunctions?: UAFolder;
|
|
64
|
-
/**
|
|
65
|
-
* protectiveStopFunctions
|
|
66
|
-
* ProtectiveStopFunctions is a container for one or
|
|
67
|
-
* more instances of the ProtectiveStopFunctionType.
|
|
68
|
-
*/
|
|
69
|
-
protectiveStopFunctions?: UAFolder;
|
|
70
|
-
}
|
|
71
|
-
export interface UASafetyState extends Omit<UAComponent, "parameterSet">, UASafetyState_Base {
|
|
72
|
-
}
|
|
1
|
+
import { UAObject } from "node-opcua-address-space-base";
|
|
2
|
+
import { DataType } from "node-opcua-variant";
|
|
3
|
+
import { UABaseDataVariable } from "node-opcua-nodeset-ua/source/ua_base_data_variable";
|
|
4
|
+
import { UAFolder } from "node-opcua-nodeset-ua/source/ua_folder";
|
|
5
|
+
import { UAComponent, UAComponent_Base } from "node-opcua-nodeset-di/source/ua_component";
|
|
6
|
+
import { EnumOperationalMode } from "./enum_operational_mode";
|
|
7
|
+
export interface UASafetyState_parameterSet extends UAObject {
|
|
8
|
+
/**
|
|
9
|
+
* operationalMode
|
|
10
|
+
* The OperationalMode variable provides information
|
|
11
|
+
* about the current operational mode. Allowed
|
|
12
|
+
* values are described in
|
|
13
|
+
* OperationalModeEnumeration, see ISO 10218-1:2011
|
|
14
|
+
* Ch.5.7 Operational Modes.
|
|
15
|
+
*/
|
|
16
|
+
operationalMode: UABaseDataVariable<EnumOperationalMode, DataType.Int32>;
|
|
17
|
+
/**
|
|
18
|
+
* emergencyStop
|
|
19
|
+
* The EmergencyStop variable is TRUE if one or more
|
|
20
|
+
* of the emergency stop functions in the robot
|
|
21
|
+
* system are active, FALSE otherwise. If the
|
|
22
|
+
* EmergencyStopFunctions object is provided, then
|
|
23
|
+
* the value of this variable is TRUE if one or more
|
|
24
|
+
* of the listed emergency stop functions are active.
|
|
25
|
+
*/
|
|
26
|
+
emergencyStop: UABaseDataVariable<boolean, DataType.Boolean>;
|
|
27
|
+
/**
|
|
28
|
+
* protectiveStop
|
|
29
|
+
* The ProtectiveStop variable is TRUE if one or
|
|
30
|
+
* more of the enabled protective stop functions in
|
|
31
|
+
* the system are active, FALSE otherwise. If the
|
|
32
|
+
* ProtectiveStopFunctions object is provided, then
|
|
33
|
+
* the value of this variable is TRUE if one or more
|
|
34
|
+
* of the listed protective stop functions are
|
|
35
|
+
* enabled and active.
|
|
36
|
+
*/
|
|
37
|
+
protectiveStop: UABaseDataVariable<boolean, DataType.Boolean>;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* SafetyStateType describes the safety states of
|
|
41
|
+
* the motion devices and controllers. One motion
|
|
42
|
+
* device system is associated with one or more
|
|
43
|
+
* instances of the SafetyStateType.
|
|
44
|
+
*
|
|
45
|
+
* | | |
|
|
46
|
+
* |----------------|--------------------------------------------------|
|
|
47
|
+
* |namespace |http://opcfoundation.org/UA/Robotics/ |
|
|
48
|
+
* |nodeClass |ObjectType |
|
|
49
|
+
* |typedDefinition |7:SafetyStateType ns=7;i=1013 |
|
|
50
|
+
* |isAbstract |false |
|
|
51
|
+
*/
|
|
52
|
+
export interface UASafetyState_Base extends UAComponent_Base {
|
|
53
|
+
/**
|
|
54
|
+
* parameterSet
|
|
55
|
+
* Flat list of Parameters
|
|
56
|
+
*/
|
|
57
|
+
parameterSet: UASafetyState_parameterSet;
|
|
58
|
+
/**
|
|
59
|
+
* emergencyStopFunctions
|
|
60
|
+
* EmergencyStopFunctions is a container for one or
|
|
61
|
+
* more instances of the EmergencyStopFunctionType.
|
|
62
|
+
*/
|
|
63
|
+
emergencyStopFunctions?: UAFolder;
|
|
64
|
+
/**
|
|
65
|
+
* protectiveStopFunctions
|
|
66
|
+
* ProtectiveStopFunctions is a container for one or
|
|
67
|
+
* more instances of the ProtectiveStopFunctionType.
|
|
68
|
+
*/
|
|
69
|
+
protectiveStopFunctions?: UAFolder;
|
|
70
|
+
}
|
|
71
|
+
export interface UASafetyState extends Omit<UAComponent, "parameterSet">, UASafetyState_Base {
|
|
72
|
+
}
|
package/dist/ua_safety_state.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
//# sourceMappingURL=ua_safety_state.js.map
|
|
@@ -1,53 +1,53 @@
|
|
|
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
|
-
import { EnumExecutionMode } from "./enum_execution_mode";
|
|
8
|
-
export interface UATaskControl_parameterSet extends UAObject {
|
|
9
|
-
/**
|
|
10
|
-
* taskProgramName
|
|
11
|
-
* A customer given identifier for the task program.
|
|
12
|
-
*/
|
|
13
|
-
taskProgramName: UABaseDataVariable<UAString, DataType.String>;
|
|
14
|
-
/**
|
|
15
|
-
* taskProgramLoaded
|
|
16
|
-
* The TaskProgramLoaded variable is TRUE if a task
|
|
17
|
-
* program is loaded in the task control, FALSE
|
|
18
|
-
* otherwise.
|
|
19
|
-
*/
|
|
20
|
-
taskProgramLoaded: UABaseDataVariable<boolean, DataType.Boolean>;
|
|
21
|
-
/**
|
|
22
|
-
* executionMode
|
|
23
|
-
* Execution mode of the task control (continuous or
|
|
24
|
-
* step-wise).
|
|
25
|
-
*/
|
|
26
|
-
executionMode?: UABaseDataVariable<EnumExecutionMode, DataType.Int32>;
|
|
27
|
-
}
|
|
28
|
-
/**
|
|
29
|
-
* Represents a specific task control active on the
|
|
30
|
-
* controller.
|
|
31
|
-
*
|
|
32
|
-
* | | |
|
|
33
|
-
* |----------------|--------------------------------------------------|
|
|
34
|
-
* |namespace |http://opcfoundation.org/UA/Robotics/ |
|
|
35
|
-
* |nodeClass |ObjectType |
|
|
36
|
-
* |typedDefinition |7:TaskControlType ns=7;i=1011 |
|
|
37
|
-
* |isAbstract |false |
|
|
38
|
-
*/
|
|
39
|
-
export interface UATaskControl_Base extends UAComponent_Base {
|
|
40
|
-
/**
|
|
41
|
-
* parameterSet
|
|
42
|
-
* Flat list of Parameters
|
|
43
|
-
*/
|
|
44
|
-
parameterSet: UATaskControl_parameterSet;
|
|
45
|
-
/**
|
|
46
|
-
* componentName
|
|
47
|
-
* A user writable name provided by the vendor,
|
|
48
|
-
* integrator or user of the device.
|
|
49
|
-
*/
|
|
50
|
-
componentName: UAProperty<LocalizedText, DataType.LocalizedText>;
|
|
51
|
-
}
|
|
52
|
-
export interface UATaskControl extends Omit<UAComponent, "parameterSet" | "componentName">, UATaskControl_Base {
|
|
53
|
-
}
|
|
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
|
+
import { EnumExecutionMode } from "./enum_execution_mode";
|
|
8
|
+
export interface UATaskControl_parameterSet extends UAObject {
|
|
9
|
+
/**
|
|
10
|
+
* taskProgramName
|
|
11
|
+
* A customer given identifier for the task program.
|
|
12
|
+
*/
|
|
13
|
+
taskProgramName: UABaseDataVariable<UAString, DataType.String>;
|
|
14
|
+
/**
|
|
15
|
+
* taskProgramLoaded
|
|
16
|
+
* The TaskProgramLoaded variable is TRUE if a task
|
|
17
|
+
* program is loaded in the task control, FALSE
|
|
18
|
+
* otherwise.
|
|
19
|
+
*/
|
|
20
|
+
taskProgramLoaded: UABaseDataVariable<boolean, DataType.Boolean>;
|
|
21
|
+
/**
|
|
22
|
+
* executionMode
|
|
23
|
+
* Execution mode of the task control (continuous or
|
|
24
|
+
* step-wise).
|
|
25
|
+
*/
|
|
26
|
+
executionMode?: UABaseDataVariable<EnumExecutionMode, DataType.Int32>;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Represents a specific task control active on the
|
|
30
|
+
* controller.
|
|
31
|
+
*
|
|
32
|
+
* | | |
|
|
33
|
+
* |----------------|--------------------------------------------------|
|
|
34
|
+
* |namespace |http://opcfoundation.org/UA/Robotics/ |
|
|
35
|
+
* |nodeClass |ObjectType |
|
|
36
|
+
* |typedDefinition |7:TaskControlType ns=7;i=1011 |
|
|
37
|
+
* |isAbstract |false |
|
|
38
|
+
*/
|
|
39
|
+
export interface UATaskControl_Base extends UAComponent_Base {
|
|
40
|
+
/**
|
|
41
|
+
* parameterSet
|
|
42
|
+
* Flat list of Parameters
|
|
43
|
+
*/
|
|
44
|
+
parameterSet: UATaskControl_parameterSet;
|
|
45
|
+
/**
|
|
46
|
+
* componentName
|
|
47
|
+
* A user writable name provided by the vendor,
|
|
48
|
+
* integrator or user of the device.
|
|
49
|
+
*/
|
|
50
|
+
componentName: UAProperty<LocalizedText, DataType.LocalizedText>;
|
|
51
|
+
}
|
|
52
|
+
export interface UATaskControl extends Omit<UAComponent, "parameterSet" | "componentName">, UATaskControl_Base {
|
|
53
|
+
}
|
package/dist/ua_task_control.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
//# sourceMappingURL=ua_task_control.js.map
|
package/dist/ua_user.d.ts
CHANGED
|
@@ -1,31 +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, DataType.String>;
|
|
23
|
-
/**
|
|
24
|
-
* name
|
|
25
|
-
* The name for the current user within the control
|
|
26
|
-
* system.
|
|
27
|
-
*/
|
|
28
|
-
name?: UAProperty<UAString, DataType.String>;
|
|
29
|
-
}
|
|
30
|
-
export interface UAUser extends UAObject, UAUser_Base {
|
|
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, DataType.String>;
|
|
23
|
+
/**
|
|
24
|
+
* name
|
|
25
|
+
* The name for the current user within the control
|
|
26
|
+
* system.
|
|
27
|
+
*/
|
|
28
|
+
name?: UAProperty<UAString, DataType.String>;
|
|
29
|
+
}
|
|
30
|
+
export interface UAUser extends UAObject, UAUser_Base {
|
|
31
|
+
}
|
package/dist/ua_user.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
//# sourceMappingURL=ua_user.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-nodeset-robotics",
|
|
3
|
-
"version": "2.76.
|
|
3
|
+
"version": "2.76.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -10,14 +10,14 @@
|
|
|
10
10
|
"author": "etienne.rossignon@sterfive.com",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"node-opcua-address-space-base": "2.76.
|
|
14
|
-
"node-opcua-basic-types": "2.76.
|
|
15
|
-
"node-opcua-data-access": "2.76.
|
|
16
|
-
"node-opcua-data-model": "2.76.
|
|
17
|
-
"node-opcua-nodeid": "2.76.
|
|
18
|
-
"node-opcua-nodeset-di": "2.76.
|
|
19
|
-
"node-opcua-nodeset-ua": "2.76.
|
|
20
|
-
"node-opcua-variant": "2.76.
|
|
13
|
+
"node-opcua-address-space-base": "2.76.2",
|
|
14
|
+
"node-opcua-basic-types": "2.76.2",
|
|
15
|
+
"node-opcua-data-access": "2.76.2",
|
|
16
|
+
"node-opcua-data-model": "2.76.2",
|
|
17
|
+
"node-opcua-nodeid": "2.76.2",
|
|
18
|
+
"node-opcua-nodeset-di": "2.76.2",
|
|
19
|
+
"node-opcua-nodeset-ua": "2.76.2",
|
|
20
|
+
"node-opcua-variant": "2.76.2"
|
|
21
21
|
},
|
|
22
|
-
"gitHead": "
|
|
22
|
+
"gitHead": "acb5ecaf1e1c71af3b63e80909d58447f3f298e7"
|
|
23
23
|
}
|