node-opcua-nodeset-cnc 2.71.0 → 2.72.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/dt_cnc_position.d.ts +19 -19
- package/dist/dt_cnc_position.js +2 -2
- package/dist/enum_cnc_axis_status.d.ts +24 -24
- package/dist/enum_cnc_axis_status.js +29 -29
- package/dist/enum_cnc_channel_program_status.d.ts +32 -32
- package/dist/enum_cnc_channel_program_status.js +37 -37
- package/dist/enum_cnc_channel_status.d.ts +24 -24
- package/dist/enum_cnc_channel_status.js +29 -29
- package/dist/enum_cnc_operation_mode.d.ts +15 -15
- package/dist/enum_cnc_operation_mode.js +20 -20
- package/dist/enum_cnc_spindle_status.d.ts +32 -32
- package/dist/enum_cnc_spindle_status.js +37 -37
- package/dist/enum_cnc_spindle_turn_direction.d.ts +24 -24
- package/dist/enum_cnc_spindle_turn_direction.js +29 -29
- package/dist/index.d.ts +19 -19
- package/dist/index.js +35 -35
- package/dist/ua_cnc_alarm.d.ts +36 -36
- package/dist/ua_cnc_alarm.js +2 -2
- package/dist/ua_cnc_axis.d.ts +62 -62
- package/dist/ua_cnc_axis.js +2 -2
- package/dist/ua_cnc_axis_list.d.ts +15 -15
- package/dist/ua_cnc_axis_list.js +2 -2
- package/dist/ua_cnc_channel.d.ts +264 -264
- package/dist/ua_cnc_channel.js +2 -2
- package/dist/ua_cnc_channel_list.d.ts +15 -15
- package/dist/ua_cnc_channel_list.js +2 -2
- package/dist/ua_cnc_component.d.ts +16 -16
- package/dist/ua_cnc_component.js +2 -2
- package/dist/ua_cnc_drive.d.ts +78 -78
- package/dist/ua_cnc_drive.js +2 -2
- package/dist/ua_cnc_interface.d.ts +60 -60
- package/dist/ua_cnc_interface.js +2 -2
- package/dist/ua_cnc_message.d.ts +15 -15
- package/dist/ua_cnc_message.js +2 -2
- package/dist/ua_cnc_position_variable.d.ts +39 -39
- package/dist/ua_cnc_position_variable.js +2 -2
- package/dist/ua_cnc_spindle.d.ts +82 -82
- package/dist/ua_cnc_spindle.js +2 -2
- package/dist/ua_cnc_spindle_list.d.ts +221 -221
- package/dist/ua_cnc_spindle_list.js +2 -2
- package/package.json +8 -9
- package/LICENSE +0 -20
|
@@ -1,221 +1,221 @@
|
|
|
1
|
-
import { UAObject } from "node-opcua-address-space-base";
|
|
2
|
-
import { DataType } from "node-opcua-variant";
|
|
3
|
-
import { NodeId } from "node-opcua-nodeid";
|
|
4
|
-
import { UInt32, UAString } from "node-opcua-basic-types";
|
|
5
|
-
import { UADataItem } from "node-opcua-nodeset-ua/source/ua_data_item";
|
|
6
|
-
import { UAAnalogItem } from "node-opcua-nodeset-ua/source/ua_analog_item";
|
|
7
|
-
import { UACncSpindle, UACncSpindle_actSpeed, UACncSpindle_cmdSpeed } from "./ua_cnc_spindle";
|
|
8
|
-
import { EnumCncOperationMode } from "./enum_cnc_operation_mode";
|
|
9
|
-
import { EnumCncChannelProgramStatus } from "./enum_cnc_channel_program_status";
|
|
10
|
-
import { EnumCncSpindleStatus } from "./enum_cnc_spindle_status";
|
|
11
|
-
import { EnumCncSpindleTurnDirection } from "./enum_cnc_spindle_turn_direction";
|
|
12
|
-
import { DTCncPosition } from "./dt_cnc_position";
|
|
13
|
-
import { UACncPositionVariable } from "./ua_cnc_position_variable";
|
|
14
|
-
export interface UACncSpindleList_$CncSpindle$ extends Omit<UACncSpindle, "actChannel" | "actGear" | "actLoad" | "actOverride" | "actPower" | "actSpeed" | "actStatus" | "actTorque" | "actTurnDirection" | "anglePos" | "cmdGear" | "cmdOverride" | "cmdSpeed" | "cmdTorque" | "isInactive" | "isVirtual"> {
|
|
15
|
-
/**
|
|
16
|
-
* actChannel
|
|
17
|
-
* NodeId of the channel object (CncChannelType)
|
|
18
|
-
* that administrates this drive to expose drive’s
|
|
19
|
-
* channel affiliation.
|
|
20
|
-
*/
|
|
21
|
-
actChannel: UADataItem<NodeId, /*z*/ DataType.NodeId>;
|
|
22
|
-
/**
|
|
23
|
-
* actFeedrate
|
|
24
|
-
* Feedrate actual value.
|
|
25
|
-
*/
|
|
26
|
-
actFeedrate: UAAnalogItem<number, /*z*/ DataType.Double>;
|
|
27
|
-
/**
|
|
28
|
-
* actGear
|
|
29
|
-
* Gear stage actual value.
|
|
30
|
-
*/
|
|
31
|
-
actGear: UADataItem<UInt32, /*z*/ DataType.UInt32>;
|
|
32
|
-
/**
|
|
33
|
-
* actGFunctions
|
|
34
|
-
* Active G function.
|
|
35
|
-
*/
|
|
36
|
-
actGFunctions: UADataItem<UInt32[], /*z*/ DataType.UInt32>;
|
|
37
|
-
/**
|
|
38
|
-
* actJogIncrement
|
|
39
|
-
* Active JOG increment.
|
|
40
|
-
*/
|
|
41
|
-
actJogIncrement: UAAnalogItem<number, /*z*/ DataType.Double>;
|
|
42
|
-
/**
|
|
43
|
-
* actLoad
|
|
44
|
-
* Drive load actual value.
|
|
45
|
-
*/
|
|
46
|
-
actLoad: UAAnalogItem<number, /*z*/ DataType.Double>;
|
|
47
|
-
/**
|
|
48
|
-
* actMainProgramFile
|
|
49
|
-
* Path of active CNC main program.
|
|
50
|
-
*/
|
|
51
|
-
actMainProgramFile: UADataItem<UAString, /*z*/ DataType.String>;
|
|
52
|
-
/**
|
|
53
|
-
* actMainProgramFileOffset
|
|
54
|
-
* File offset of active CNC main program file.
|
|
55
|
-
*/
|
|
56
|
-
actMainProgramFileOffset: UADataItem<UInt32, /*z*/ DataType.UInt32>;
|
|
57
|
-
/**
|
|
58
|
-
* actMainProgramLine
|
|
59
|
-
* Line number of active CNC main program.
|
|
60
|
-
*/
|
|
61
|
-
actMainProgramLine: UADataItem<UAString, /*z*/ DataType.String>;
|
|
62
|
-
/**
|
|
63
|
-
* actMainProgramName
|
|
64
|
-
* Name of active CNC main program.
|
|
65
|
-
*/
|
|
66
|
-
actMainProgramName: UADataItem<UAString, /*z*/ DataType.String>;
|
|
67
|
-
/**
|
|
68
|
-
* actMFunctions
|
|
69
|
-
* Active M function.
|
|
70
|
-
*/
|
|
71
|
-
actMFunctions: UADataItem<UInt32[], /*z*/ DataType.UInt32>;
|
|
72
|
-
/**
|
|
73
|
-
* actModalOffsetFunction
|
|
74
|
-
* active zero offset function
|
|
75
|
-
*/
|
|
76
|
-
actModalOffsetFunction: UADataItem<UInt32, /*z*/ DataType.UInt32>;
|
|
77
|
-
actOperationMode: UADataItem<EnumCncOperationMode, /*z*/ DataType.Int32>;
|
|
78
|
-
/**
|
|
79
|
-
* actOverride
|
|
80
|
-
* Override actual value.
|
|
81
|
-
*/
|
|
82
|
-
actOverride: UAAnalogItem<number, /*z*/ DataType.Double>;
|
|
83
|
-
/**
|
|
84
|
-
* actPower
|
|
85
|
-
* Drive power actual value.
|
|
86
|
-
*/
|
|
87
|
-
actPower: UAAnalogItem<number, /*z*/ DataType.Double>;
|
|
88
|
-
/**
|
|
89
|
-
* actProgramBlock
|
|
90
|
-
* previous, actual and subsequent CNC program lines
|
|
91
|
-
*/
|
|
92
|
-
actProgramBlock: UADataItem<UAString[], /*z*/ DataType.String>;
|
|
93
|
-
/**
|
|
94
|
-
* actProgramFile
|
|
95
|
-
* Path of active CNC program file (main or
|
|
96
|
-
* subprogram).
|
|
97
|
-
*/
|
|
98
|
-
actProgramFile: UADataItem<UAString, /*z*/ DataType.String>;
|
|
99
|
-
/**
|
|
100
|
-
* actProgramFileOffset
|
|
101
|
-
* File offset of active CNC program file (main or
|
|
102
|
-
* subprogram).
|
|
103
|
-
*/
|
|
104
|
-
actProgramFileOffset: UADataItem<UInt32, /*z*/ DataType.UInt32>;
|
|
105
|
-
/**
|
|
106
|
-
* actProgramLine
|
|
107
|
-
* Line number of active CNC program (main or
|
|
108
|
-
* subprogram).
|
|
109
|
-
*/
|
|
110
|
-
actProgramLine: UADataItem<UAString, /*z*/ DataType.String>;
|
|
111
|
-
/**
|
|
112
|
-
* actProgramName
|
|
113
|
-
* Name of active CNC program (main or subprogram).
|
|
114
|
-
*/
|
|
115
|
-
actProgramName: UADataItem<UAString, /*z*/ DataType.String>;
|
|
116
|
-
/**
|
|
117
|
-
* actProgramStatus
|
|
118
|
-
* Active channel program status
|
|
119
|
-
*/
|
|
120
|
-
actProgramStatus: UADataItem<EnumCncChannelProgramStatus, /*z*/ DataType.Int32>;
|
|
121
|
-
/**
|
|
122
|
-
* actSpeed
|
|
123
|
-
* Speed actual value.
|
|
124
|
-
*/
|
|
125
|
-
actSpeed: UACncSpindle_actSpeed<number, /*z*/ DataType.Double>;
|
|
126
|
-
/**
|
|
127
|
-
* actStatus
|
|
128
|
-
* Actual spindle state.
|
|
129
|
-
*/
|
|
130
|
-
actStatus: UADataItem<EnumCncSpindleStatus, /*z*/ DataType.Int32>;
|
|
131
|
-
/**
|
|
132
|
-
* actTorque
|
|
133
|
-
* Drive torque actual value.
|
|
134
|
-
*/
|
|
135
|
-
actTorque: UAAnalogItem<number, /*z*/ DataType.Double>;
|
|
136
|
-
/**
|
|
137
|
-
* actTurnDirection
|
|
138
|
-
* Turn direction actual value.
|
|
139
|
-
*/
|
|
140
|
-
actTurnDirection: UADataItem<EnumCncSpindleTurnDirection, /*z*/ DataType.Int32>;
|
|
141
|
-
/**
|
|
142
|
-
* anglePos
|
|
143
|
-
* Spindle angular position values in case of
|
|
144
|
-
* interpolated (position controlled) spindle
|
|
145
|
-
* movement. Returns zeros in case of regular
|
|
146
|
-
* spindle operation (velocity controlled).
|
|
147
|
-
*/
|
|
148
|
-
anglePos: UACncPositionVariable<DTCncPosition>;
|
|
149
|
-
/**
|
|
150
|
-
* blockMode
|
|
151
|
-
* block mode active
|
|
152
|
-
*/
|
|
153
|
-
blockMode: UADataItem<boolean, /*z*/ DataType.Boolean>;
|
|
154
|
-
/**
|
|
155
|
-
* cmdFeedrate
|
|
156
|
-
* feedrate setpoint value
|
|
157
|
-
*/
|
|
158
|
-
cmdFeedrate: UAAnalogItem<number, /*z*/ DataType.Double>;
|
|
159
|
-
/**
|
|
160
|
-
* cmdGear
|
|
161
|
-
* Gear stage setpoint value.
|
|
162
|
-
*/
|
|
163
|
-
cmdGear: UADataItem<UInt32, /*z*/ DataType.UInt32>;
|
|
164
|
-
cmdOperationMode: UADataItem<EnumCncOperationMode, /*z*/ DataType.Int32>;
|
|
165
|
-
/**
|
|
166
|
-
* cmdOverride
|
|
167
|
-
* Override setpoint value.
|
|
168
|
-
*/
|
|
169
|
-
cmdOverride: UAAnalogItem<number, /*z*/ DataType.Double>;
|
|
170
|
-
/**
|
|
171
|
-
* cmdSpeed
|
|
172
|
-
* Speed setpoint value.
|
|
173
|
-
*/
|
|
174
|
-
cmdSpeed: UACncSpindle_cmdSpeed<number, /*z*/ DataType.Double>;
|
|
175
|
-
/**
|
|
176
|
-
* cmdTorque
|
|
177
|
-
* Drive torque setpoint value.
|
|
178
|
-
*/
|
|
179
|
-
cmdTorque: UAAnalogItem<number, /*z*/ DataType.Double>;
|
|
180
|
-
/**
|
|
181
|
-
* dryRunFeed
|
|
182
|
-
* test feedrate
|
|
183
|
-
*/
|
|
184
|
-
dryRunFeed: UAAnalogItem<number, /*z*/ DataType.Double>;
|
|
185
|
-
/**
|
|
186
|
-
* feedHold
|
|
187
|
-
* feed hold active
|
|
188
|
-
*/
|
|
189
|
-
feedHold: UADataItem<boolean, /*z*/ DataType.Boolean>;
|
|
190
|
-
/**
|
|
191
|
-
* isInactive
|
|
192
|
-
* Drive inactive state (true in case of inactive
|
|
193
|
-
* drive, else false).
|
|
194
|
-
*/
|
|
195
|
-
isInactive: UADataItem<boolean, /*z*/ DataType.Boolean>;
|
|
196
|
-
/**
|
|
197
|
-
* isVirtual
|
|
198
|
-
* Virtual axis (no hardware present; true in case
|
|
199
|
-
* of virtual axis, else fals).
|
|
200
|
-
*/
|
|
201
|
-
isVirtual: UADataItem<boolean, /*z*/ DataType.Boolean>;
|
|
202
|
-
/**
|
|
203
|
-
* toolId
|
|
204
|
-
* active tool ID
|
|
205
|
-
*/
|
|
206
|
-
toolId: UADataItem<UInt32, /*z*/ DataType.UInt32>;
|
|
207
|
-
}
|
|
208
|
-
/**
|
|
209
|
-
* List of CNC spindle objects.
|
|
210
|
-
*
|
|
211
|
-
* | | |
|
|
212
|
-
* |----------------|--------------------------------------------------|
|
|
213
|
-
* |namespace |http://opcfoundation.org/UA/CNC |
|
|
214
|
-
* |nodeClass |ObjectType |
|
|
215
|
-
* |typedDefinition |11:CncSpindleListType ns=11;i=1009 |
|
|
216
|
-
* |isAbstract |false |
|
|
217
|
-
*/
|
|
218
|
-
export interface UACncSpindleList_Base {
|
|
219
|
-
}
|
|
220
|
-
export interface UACncSpindleList extends UAObject, UACncSpindleList_Base {
|
|
221
|
-
}
|
|
1
|
+
import { UAObject } from "node-opcua-address-space-base";
|
|
2
|
+
import { DataType } from "node-opcua-variant";
|
|
3
|
+
import { NodeId } from "node-opcua-nodeid";
|
|
4
|
+
import { UInt32, UAString } from "node-opcua-basic-types";
|
|
5
|
+
import { UADataItem } from "node-opcua-nodeset-ua/source/ua_data_item";
|
|
6
|
+
import { UAAnalogItem } from "node-opcua-nodeset-ua/source/ua_analog_item";
|
|
7
|
+
import { UACncSpindle, UACncSpindle_actSpeed, UACncSpindle_cmdSpeed } from "./ua_cnc_spindle";
|
|
8
|
+
import { EnumCncOperationMode } from "./enum_cnc_operation_mode";
|
|
9
|
+
import { EnumCncChannelProgramStatus } from "./enum_cnc_channel_program_status";
|
|
10
|
+
import { EnumCncSpindleStatus } from "./enum_cnc_spindle_status";
|
|
11
|
+
import { EnumCncSpindleTurnDirection } from "./enum_cnc_spindle_turn_direction";
|
|
12
|
+
import { DTCncPosition } from "./dt_cnc_position";
|
|
13
|
+
import { UACncPositionVariable } from "./ua_cnc_position_variable";
|
|
14
|
+
export interface UACncSpindleList_$CncSpindle$ extends Omit<UACncSpindle, "actChannel" | "actGear" | "actLoad" | "actOverride" | "actPower" | "actSpeed" | "actStatus" | "actTorque" | "actTurnDirection" | "anglePos" | "cmdGear" | "cmdOverride" | "cmdSpeed" | "cmdTorque" | "isInactive" | "isVirtual"> {
|
|
15
|
+
/**
|
|
16
|
+
* actChannel
|
|
17
|
+
* NodeId of the channel object (CncChannelType)
|
|
18
|
+
* that administrates this drive to expose drive’s
|
|
19
|
+
* channel affiliation.
|
|
20
|
+
*/
|
|
21
|
+
actChannel: UADataItem<NodeId, /*z*/ DataType.NodeId>;
|
|
22
|
+
/**
|
|
23
|
+
* actFeedrate
|
|
24
|
+
* Feedrate actual value.
|
|
25
|
+
*/
|
|
26
|
+
actFeedrate: UAAnalogItem<number, /*z*/ DataType.Double>;
|
|
27
|
+
/**
|
|
28
|
+
* actGear
|
|
29
|
+
* Gear stage actual value.
|
|
30
|
+
*/
|
|
31
|
+
actGear: UADataItem<UInt32, /*z*/ DataType.UInt32>;
|
|
32
|
+
/**
|
|
33
|
+
* actGFunctions
|
|
34
|
+
* Active G function.
|
|
35
|
+
*/
|
|
36
|
+
actGFunctions: UADataItem<UInt32[], /*z*/ DataType.UInt32>;
|
|
37
|
+
/**
|
|
38
|
+
* actJogIncrement
|
|
39
|
+
* Active JOG increment.
|
|
40
|
+
*/
|
|
41
|
+
actJogIncrement: UAAnalogItem<number, /*z*/ DataType.Double>;
|
|
42
|
+
/**
|
|
43
|
+
* actLoad
|
|
44
|
+
* Drive load actual value.
|
|
45
|
+
*/
|
|
46
|
+
actLoad: UAAnalogItem<number, /*z*/ DataType.Double>;
|
|
47
|
+
/**
|
|
48
|
+
* actMainProgramFile
|
|
49
|
+
* Path of active CNC main program.
|
|
50
|
+
*/
|
|
51
|
+
actMainProgramFile: UADataItem<UAString, /*z*/ DataType.String>;
|
|
52
|
+
/**
|
|
53
|
+
* actMainProgramFileOffset
|
|
54
|
+
* File offset of active CNC main program file.
|
|
55
|
+
*/
|
|
56
|
+
actMainProgramFileOffset: UADataItem<UInt32, /*z*/ DataType.UInt32>;
|
|
57
|
+
/**
|
|
58
|
+
* actMainProgramLine
|
|
59
|
+
* Line number of active CNC main program.
|
|
60
|
+
*/
|
|
61
|
+
actMainProgramLine: UADataItem<UAString, /*z*/ DataType.String>;
|
|
62
|
+
/**
|
|
63
|
+
* actMainProgramName
|
|
64
|
+
* Name of active CNC main program.
|
|
65
|
+
*/
|
|
66
|
+
actMainProgramName: UADataItem<UAString, /*z*/ DataType.String>;
|
|
67
|
+
/**
|
|
68
|
+
* actMFunctions
|
|
69
|
+
* Active M function.
|
|
70
|
+
*/
|
|
71
|
+
actMFunctions: UADataItem<UInt32[], /*z*/ DataType.UInt32>;
|
|
72
|
+
/**
|
|
73
|
+
* actModalOffsetFunction
|
|
74
|
+
* active zero offset function
|
|
75
|
+
*/
|
|
76
|
+
actModalOffsetFunction: UADataItem<UInt32, /*z*/ DataType.UInt32>;
|
|
77
|
+
actOperationMode: UADataItem<EnumCncOperationMode, /*z*/ DataType.Int32>;
|
|
78
|
+
/**
|
|
79
|
+
* actOverride
|
|
80
|
+
* Override actual value.
|
|
81
|
+
*/
|
|
82
|
+
actOverride: UAAnalogItem<number, /*z*/ DataType.Double>;
|
|
83
|
+
/**
|
|
84
|
+
* actPower
|
|
85
|
+
* Drive power actual value.
|
|
86
|
+
*/
|
|
87
|
+
actPower: UAAnalogItem<number, /*z*/ DataType.Double>;
|
|
88
|
+
/**
|
|
89
|
+
* actProgramBlock
|
|
90
|
+
* previous, actual and subsequent CNC program lines
|
|
91
|
+
*/
|
|
92
|
+
actProgramBlock: UADataItem<UAString[], /*z*/ DataType.String>;
|
|
93
|
+
/**
|
|
94
|
+
* actProgramFile
|
|
95
|
+
* Path of active CNC program file (main or
|
|
96
|
+
* subprogram).
|
|
97
|
+
*/
|
|
98
|
+
actProgramFile: UADataItem<UAString, /*z*/ DataType.String>;
|
|
99
|
+
/**
|
|
100
|
+
* actProgramFileOffset
|
|
101
|
+
* File offset of active CNC program file (main or
|
|
102
|
+
* subprogram).
|
|
103
|
+
*/
|
|
104
|
+
actProgramFileOffset: UADataItem<UInt32, /*z*/ DataType.UInt32>;
|
|
105
|
+
/**
|
|
106
|
+
* actProgramLine
|
|
107
|
+
* Line number of active CNC program (main or
|
|
108
|
+
* subprogram).
|
|
109
|
+
*/
|
|
110
|
+
actProgramLine: UADataItem<UAString, /*z*/ DataType.String>;
|
|
111
|
+
/**
|
|
112
|
+
* actProgramName
|
|
113
|
+
* Name of active CNC program (main or subprogram).
|
|
114
|
+
*/
|
|
115
|
+
actProgramName: UADataItem<UAString, /*z*/ DataType.String>;
|
|
116
|
+
/**
|
|
117
|
+
* actProgramStatus
|
|
118
|
+
* Active channel program status
|
|
119
|
+
*/
|
|
120
|
+
actProgramStatus: UADataItem<EnumCncChannelProgramStatus, /*z*/ DataType.Int32>;
|
|
121
|
+
/**
|
|
122
|
+
* actSpeed
|
|
123
|
+
* Speed actual value.
|
|
124
|
+
*/
|
|
125
|
+
actSpeed: UACncSpindle_actSpeed<number, /*z*/ DataType.Double>;
|
|
126
|
+
/**
|
|
127
|
+
* actStatus
|
|
128
|
+
* Actual spindle state.
|
|
129
|
+
*/
|
|
130
|
+
actStatus: UADataItem<EnumCncSpindleStatus, /*z*/ DataType.Int32>;
|
|
131
|
+
/**
|
|
132
|
+
* actTorque
|
|
133
|
+
* Drive torque actual value.
|
|
134
|
+
*/
|
|
135
|
+
actTorque: UAAnalogItem<number, /*z*/ DataType.Double>;
|
|
136
|
+
/**
|
|
137
|
+
* actTurnDirection
|
|
138
|
+
* Turn direction actual value.
|
|
139
|
+
*/
|
|
140
|
+
actTurnDirection: UADataItem<EnumCncSpindleTurnDirection, /*z*/ DataType.Int32>;
|
|
141
|
+
/**
|
|
142
|
+
* anglePos
|
|
143
|
+
* Spindle angular position values in case of
|
|
144
|
+
* interpolated (position controlled) spindle
|
|
145
|
+
* movement. Returns zeros in case of regular
|
|
146
|
+
* spindle operation (velocity controlled).
|
|
147
|
+
*/
|
|
148
|
+
anglePos: UACncPositionVariable<DTCncPosition>;
|
|
149
|
+
/**
|
|
150
|
+
* blockMode
|
|
151
|
+
* block mode active
|
|
152
|
+
*/
|
|
153
|
+
blockMode: UADataItem<boolean, /*z*/ DataType.Boolean>;
|
|
154
|
+
/**
|
|
155
|
+
* cmdFeedrate
|
|
156
|
+
* feedrate setpoint value
|
|
157
|
+
*/
|
|
158
|
+
cmdFeedrate: UAAnalogItem<number, /*z*/ DataType.Double>;
|
|
159
|
+
/**
|
|
160
|
+
* cmdGear
|
|
161
|
+
* Gear stage setpoint value.
|
|
162
|
+
*/
|
|
163
|
+
cmdGear: UADataItem<UInt32, /*z*/ DataType.UInt32>;
|
|
164
|
+
cmdOperationMode: UADataItem<EnumCncOperationMode, /*z*/ DataType.Int32>;
|
|
165
|
+
/**
|
|
166
|
+
* cmdOverride
|
|
167
|
+
* Override setpoint value.
|
|
168
|
+
*/
|
|
169
|
+
cmdOverride: UAAnalogItem<number, /*z*/ DataType.Double>;
|
|
170
|
+
/**
|
|
171
|
+
* cmdSpeed
|
|
172
|
+
* Speed setpoint value.
|
|
173
|
+
*/
|
|
174
|
+
cmdSpeed: UACncSpindle_cmdSpeed<number, /*z*/ DataType.Double>;
|
|
175
|
+
/**
|
|
176
|
+
* cmdTorque
|
|
177
|
+
* Drive torque setpoint value.
|
|
178
|
+
*/
|
|
179
|
+
cmdTorque: UAAnalogItem<number, /*z*/ DataType.Double>;
|
|
180
|
+
/**
|
|
181
|
+
* dryRunFeed
|
|
182
|
+
* test feedrate
|
|
183
|
+
*/
|
|
184
|
+
dryRunFeed: UAAnalogItem<number, /*z*/ DataType.Double>;
|
|
185
|
+
/**
|
|
186
|
+
* feedHold
|
|
187
|
+
* feed hold active
|
|
188
|
+
*/
|
|
189
|
+
feedHold: UADataItem<boolean, /*z*/ DataType.Boolean>;
|
|
190
|
+
/**
|
|
191
|
+
* isInactive
|
|
192
|
+
* Drive inactive state (true in case of inactive
|
|
193
|
+
* drive, else false).
|
|
194
|
+
*/
|
|
195
|
+
isInactive: UADataItem<boolean, /*z*/ DataType.Boolean>;
|
|
196
|
+
/**
|
|
197
|
+
* isVirtual
|
|
198
|
+
* Virtual axis (no hardware present; true in case
|
|
199
|
+
* of virtual axis, else fals).
|
|
200
|
+
*/
|
|
201
|
+
isVirtual: UADataItem<boolean, /*z*/ DataType.Boolean>;
|
|
202
|
+
/**
|
|
203
|
+
* toolId
|
|
204
|
+
* active tool ID
|
|
205
|
+
*/
|
|
206
|
+
toolId: UADataItem<UInt32, /*z*/ DataType.UInt32>;
|
|
207
|
+
}
|
|
208
|
+
/**
|
|
209
|
+
* List of CNC spindle objects.
|
|
210
|
+
*
|
|
211
|
+
* | | |
|
|
212
|
+
* |----------------|--------------------------------------------------|
|
|
213
|
+
* |namespace |http://opcfoundation.org/UA/CNC |
|
|
214
|
+
* |nodeClass |ObjectType |
|
|
215
|
+
* |typedDefinition |11:CncSpindleListType ns=11;i=1009 |
|
|
216
|
+
* |isAbstract |false |
|
|
217
|
+
*/
|
|
218
|
+
export interface UACncSpindleList_Base {
|
|
219
|
+
}
|
|
220
|
+
export interface UACncSpindleList extends UAObject, UACncSpindleList_Base {
|
|
221
|
+
}
|
|
@@ -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_cnc_spindle_list.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-nodeset-cnc",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.72.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -10,14 +10,13 @@
|
|
|
10
10
|
"author": "etienne.rossignon@sterfive.com",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"node-opcua-address-space-base": "2.
|
|
14
|
-
"node-opcua-basic-types": "2.
|
|
15
|
-
"node-opcua-data-access": "2.
|
|
16
|
-
"node-opcua-data-model": "2.
|
|
13
|
+
"node-opcua-address-space-base": "2.72.2",
|
|
14
|
+
"node-opcua-basic-types": "2.72.1",
|
|
15
|
+
"node-opcua-data-access": "2.72.2",
|
|
16
|
+
"node-opcua-data-model": "2.72.1",
|
|
17
17
|
"node-opcua-nodeid": "2.71.0",
|
|
18
|
-
"node-opcua-nodeset-ua": "2.
|
|
18
|
+
"node-opcua-nodeset-ua": "2.72.2",
|
|
19
19
|
"node-opcua-status-code": "2.71.0",
|
|
20
|
-
"node-opcua-variant": "2.
|
|
21
|
-
}
|
|
22
|
-
"gitHead": "10f7cc1e1cd30dfef75adad9cb709a78401fabf3"
|
|
20
|
+
"node-opcua-variant": "2.72.2"
|
|
21
|
+
}
|
|
23
22
|
}
|
package/LICENSE
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
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.
|