@wandelbots/nova-api 25.8.0-dev.13 → 25.8.0-dev.15
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/package.json +1 -1
- package/v2/api.d.ts +131 -84
- package/v2/api.js +43 -43
- package/v2/api.js.map +1 -1
- package/v2/api.ts +131 -80
package/v2/api.ts
CHANGED
|
@@ -373,7 +373,7 @@ export const BoxBoxTypeEnum = {
|
|
|
373
373
|
export type BoxBoxTypeEnum = typeof BoxBoxTypeEnum[keyof typeof BoxBoxTypeEnum];
|
|
374
374
|
|
|
375
375
|
/**
|
|
376
|
-
* PROFINET BUS
|
|
376
|
+
* PROFINET BUS inputs/outputs service configuration.
|
|
377
377
|
* @export
|
|
378
378
|
* @interface BusIOProfinet
|
|
379
379
|
*/
|
|
@@ -385,19 +385,19 @@ export interface BusIOProfinet {
|
|
|
385
385
|
*/
|
|
386
386
|
'bus_type'?: BusIOProfinetBusTypeEnum;
|
|
387
387
|
/**
|
|
388
|
-
*
|
|
388
|
+
* Content of Configuration XML file for PROFINET device, typically known as PND_IOD.xml. Leave empty for the default configuration. Refer to the official PROFINET driver documentation for further information.
|
|
389
389
|
* @type {string}
|
|
390
390
|
* @memberof BusIOProfinet
|
|
391
391
|
*/
|
|
392
392
|
'config_file_content'?: string;
|
|
393
393
|
/**
|
|
394
|
-
*
|
|
394
|
+
* Used to enable IP communication through the same physical interface while PN Driver is running.
|
|
395
395
|
* @type {BusIOProfinetNetwork}
|
|
396
396
|
* @memberof BusIOProfinet
|
|
397
397
|
*/
|
|
398
398
|
'network_config'?: BusIOProfinetNetwork;
|
|
399
399
|
/**
|
|
400
|
-
* MAC address
|
|
400
|
+
* MAC address of the physical ethernet interface that you want to use for PROFINET communication.
|
|
401
401
|
* @type {string}
|
|
402
402
|
* @memberof BusIOProfinet
|
|
403
403
|
*/
|
|
@@ -417,7 +417,7 @@ export const BusIOProfinetBusTypeEnum = {
|
|
|
417
417
|
export type BusIOProfinetBusTypeEnum = typeof BusIOProfinetBusTypeEnum[keyof typeof BusIOProfinetBusTypeEnum];
|
|
418
418
|
|
|
419
419
|
/**
|
|
420
|
-
*
|
|
420
|
+
* Current default route configuration of your NOVA instance. The default route is a setting that tells data where to go if there isn’t a specific path already known for its destination. Usually this will be the path to your router, enabling accessing the internet. On Linux, use `ip route show` to view your default routes and match the output `default via <gateway> dev <interface> ...` to get your gateway and interface.
|
|
421
421
|
* @export
|
|
422
422
|
* @interface BusIOProfinetDefaultRoute
|
|
423
423
|
*/
|
|
@@ -436,25 +436,25 @@ export interface BusIOProfinetDefaultRoute {
|
|
|
436
436
|
'interface': string;
|
|
437
437
|
}
|
|
438
438
|
/**
|
|
439
|
-
* Network configuration
|
|
439
|
+
* Network configuration or IPv4 record of the virtual ethernet interface (pnio1) created by the PROFINET driver. The IPv4 record is used in combination with the Name of Station (NoS) to identify your device in the PROFINET network. The `ip_config` will be used as IPv4 record if no REMA XML file is already present on your machine and no `rema_xml_content` is provided.
|
|
440
440
|
* @export
|
|
441
441
|
* @interface BusIOProfinetIpConfig
|
|
442
442
|
*/
|
|
443
443
|
export interface BusIOProfinetIpConfig {
|
|
444
444
|
/**
|
|
445
|
-
* IP address for the
|
|
445
|
+
* IP address for the device\'s virtual ethernet interface (pnio1).
|
|
446
446
|
* @type {string}
|
|
447
447
|
* @memberof BusIOProfinetIpConfig
|
|
448
448
|
*/
|
|
449
449
|
'ip': string;
|
|
450
450
|
/**
|
|
451
|
-
* Network mask for the
|
|
451
|
+
* Network mask for the device\'s virtual ethernet interface (pnio1).
|
|
452
452
|
* @type {string}
|
|
453
453
|
* @memberof BusIOProfinetIpConfig
|
|
454
454
|
*/
|
|
455
455
|
'netmask': string;
|
|
456
456
|
/**
|
|
457
|
-
* Gateway for the
|
|
457
|
+
* Gateway for connections to other devices outside of the virtual ethernet interface\'s subnet.
|
|
458
458
|
* @type {string}
|
|
459
459
|
* @memberof BusIOProfinetIpConfig
|
|
460
460
|
*/
|
|
@@ -467,7 +467,7 @@ export interface BusIOProfinetIpConfig {
|
|
|
467
467
|
*/
|
|
468
468
|
export interface BusIOProfinetNetwork {
|
|
469
469
|
/**
|
|
470
|
-
* Name of the PROFINET device.
|
|
470
|
+
* Name of Station (NoS) of the PROFINET device. The NoS is used in combination with IPv4 record to identify your device in the PROFINET network. The `device_name` will be used as NoS if no REMA XML file is already present on your machine and no `rema_xml_content` is provided.
|
|
471
471
|
* @type {string}
|
|
472
472
|
* @memberof BusIOProfinetNetwork
|
|
473
473
|
*/
|
|
@@ -479,14 +479,14 @@ export interface BusIOProfinetNetwork {
|
|
|
479
479
|
*/
|
|
480
480
|
'ip_config'?: BusIOProfinetIpConfig;
|
|
481
481
|
/**
|
|
482
|
-
* Content of the PROFINET REMA XML file.
|
|
482
|
+
* Content of the PROFINET REMA XML file. Is used when PROFINET service is added for the first time to create the REMA XML file that holds data to be kept for the next session. Stores information like IP address, Name of Station (NoS) and hardware configuration. If you use a PROFINET controller to assign an IP address to the PROFINET device, this information will be written to the REMA XML file. Refer to the PDF version of the \"PN Driver I/O Base programming interface\" documentation for more information and an example REMA file.
|
|
483
483
|
* @type {string}
|
|
484
484
|
* @memberof BusIOProfinetNetwork
|
|
485
485
|
*/
|
|
486
486
|
'rema_xml_content'?: string;
|
|
487
487
|
}
|
|
488
488
|
/**
|
|
489
|
-
* Virtual PROFINET BUS
|
|
489
|
+
* Virtual PROFINET BUS inputs/outputs service configuration.
|
|
490
490
|
* @export
|
|
491
491
|
* @interface BusIOProfinetVirtual
|
|
492
492
|
*/
|
|
@@ -500,7 +500,7 @@ export interface BusIOProfinetVirtual {
|
|
|
500
500
|
}
|
|
501
501
|
|
|
502
502
|
export const BusIOProfinetVirtualBusTypeEnum = {
|
|
503
|
-
|
|
503
|
+
ProfinetVirtual: 'profinet_virtual'
|
|
504
504
|
} as const;
|
|
505
505
|
|
|
506
506
|
export type BusIOProfinetVirtualBusTypeEnum = typeof BusIOProfinetVirtualBusTypeEnum[keyof typeof BusIOProfinetVirtualBusTypeEnum];
|
|
@@ -524,7 +524,7 @@ export interface BusIOsState {
|
|
|
524
524
|
*/
|
|
525
525
|
'state': BusIOsStateEnum;
|
|
526
526
|
/**
|
|
527
|
-
* A message providing additional information on the input/output, e.g. BUS service status, encountered errors. May be empty if no additional information is available.
|
|
527
|
+
* A message providing additional information on the input/output service, e.g. BUS service status, encountered errors. May be empty if no additional information is available.
|
|
528
528
|
* @type {string}
|
|
529
529
|
* @memberof BusIOsState
|
|
530
530
|
*/
|
|
@@ -1876,6 +1876,57 @@ export interface IODescription {
|
|
|
1876
1876
|
}
|
|
1877
1877
|
|
|
1878
1878
|
|
|
1879
|
+
/**
|
|
1880
|
+
*
|
|
1881
|
+
* @export
|
|
1882
|
+
* @interface IODescription2
|
|
1883
|
+
*/
|
|
1884
|
+
export interface IODescription2 {
|
|
1885
|
+
/**
|
|
1886
|
+
* Unique identifier of the input/output.
|
|
1887
|
+
* @type {string}
|
|
1888
|
+
* @memberof IODescription2
|
|
1889
|
+
*/
|
|
1890
|
+
'io': string;
|
|
1891
|
+
/**
|
|
1892
|
+
* Descriptive name of the input/output. Customize it using the respective BUS service, e.g. [addProfinetIO](addProfinetIO) for PROFINET service.
|
|
1893
|
+
* @type {string}
|
|
1894
|
+
* @memberof IODescription2
|
|
1895
|
+
*/
|
|
1896
|
+
'name': string;
|
|
1897
|
+
/**
|
|
1898
|
+
*
|
|
1899
|
+
* @type {IODirection}
|
|
1900
|
+
* @memberof IODescription2
|
|
1901
|
+
*/
|
|
1902
|
+
'direction': IODirection;
|
|
1903
|
+
/**
|
|
1904
|
+
*
|
|
1905
|
+
* @type {IOValueType}
|
|
1906
|
+
* @memberof IODescription2
|
|
1907
|
+
*/
|
|
1908
|
+
'value_type': IOValueType;
|
|
1909
|
+
/**
|
|
1910
|
+
*
|
|
1911
|
+
* @type {UnitType}
|
|
1912
|
+
* @memberof IODescription2
|
|
1913
|
+
*/
|
|
1914
|
+
'unit'?: UnitType;
|
|
1915
|
+
/**
|
|
1916
|
+
*
|
|
1917
|
+
* @type {IODescriptionMin}
|
|
1918
|
+
* @memberof IODescription2
|
|
1919
|
+
*/
|
|
1920
|
+
'min'?: IODescriptionMin;
|
|
1921
|
+
/**
|
|
1922
|
+
*
|
|
1923
|
+
* @type {IODescriptionMin}
|
|
1924
|
+
* @memberof IODescription2
|
|
1925
|
+
*/
|
|
1926
|
+
'max'?: IODescriptionMin;
|
|
1927
|
+
}
|
|
1928
|
+
|
|
1929
|
+
|
|
1879
1930
|
/**
|
|
1880
1931
|
* @type IODescriptionMin
|
|
1881
1932
|
* @export
|
|
@@ -4071,17 +4122,17 @@ export interface ProfinetDescription {
|
|
|
4071
4122
|
*/
|
|
4072
4123
|
'slots'?: Array<ProfinetSlotDescription>;
|
|
4073
4124
|
/**
|
|
4074
|
-
* Name of the PROFINET device
|
|
4125
|
+
* Name of Station (NoS) of the PROFINET device. The NoS is used in combination with IPv4 record to identify your device in the PROFINET network. The `device_name` will be used as NoS if no REMA XML file is already present on your NOVA instance and no `rema_xml_content` is provided.
|
|
4075
4126
|
* @type {string}
|
|
4076
4127
|
* @memberof ProfinetDescription
|
|
4077
4128
|
*/
|
|
4078
4129
|
'device_name'?: string;
|
|
4079
4130
|
/**
|
|
4080
|
-
*
|
|
4081
|
-
* @type {
|
|
4131
|
+
*
|
|
4132
|
+
* @type {BusIOProfinetIpConfig}
|
|
4082
4133
|
* @memberof ProfinetDescription
|
|
4083
4134
|
*/
|
|
4084
|
-
'
|
|
4135
|
+
'ip_config'?: BusIOProfinetIpConfig;
|
|
4085
4136
|
}
|
|
4086
4137
|
/**
|
|
4087
4138
|
*
|
|
@@ -4090,7 +4141,7 @@ export interface ProfinetDescription {
|
|
|
4090
4141
|
*/
|
|
4091
4142
|
export interface ProfinetIO {
|
|
4092
4143
|
/**
|
|
4093
|
-
* The name of the input/output
|
|
4144
|
+
* The name of the input/output variable. This is a human-readable identifier for the value. It distinguishes between different inputs/outputs variables in the system. The variables may be used to set bits or bytes at their pointed to address via [setBusIOValues](setBusIOValues).
|
|
4094
4145
|
* @type {string}
|
|
4095
4146
|
* @memberof ProfinetIO
|
|
4096
4147
|
*/
|
|
@@ -4102,25 +4153,25 @@ export interface ProfinetIO {
|
|
|
4102
4153
|
*/
|
|
4103
4154
|
'type': ProfinetIOTypeEnum;
|
|
4104
4155
|
/**
|
|
4105
|
-
* The direction of the input/output
|
|
4156
|
+
* The direction of the input/output variable, indicating whether it is an input or output for the PROFINET device, e.g. NOVA\'s PROFINET service.
|
|
4106
4157
|
* @type {ProfinetIODirection}
|
|
4107
4158
|
* @memberof ProfinetIO
|
|
4108
4159
|
*/
|
|
4109
4160
|
'direction': ProfinetIODirection;
|
|
4110
4161
|
/**
|
|
4111
|
-
* The byte address of the input/output
|
|
4162
|
+
* The byte address of the input/output variable in the PROFINET device, e.g. NOVA\'s PROFINET service. The byte address is used to locate the specific input/output variable within the device\'s memory or data structure.
|
|
4112
4163
|
* @type {number}
|
|
4113
4164
|
* @memberof ProfinetIO
|
|
4114
4165
|
*/
|
|
4115
4166
|
'byte_address': number;
|
|
4116
4167
|
/**
|
|
4117
|
-
* The bit address of the input/output
|
|
4168
|
+
* The bit address of the input/output variable within the byte or word address. The bit address is used to specify the exact bit within the byte or word that corresponds to the input/output variable.
|
|
4118
4169
|
* @type {number}
|
|
4119
4170
|
* @memberof ProfinetIO
|
|
4120
4171
|
*/
|
|
4121
4172
|
'bit_address'?: number;
|
|
4122
4173
|
/**
|
|
4123
|
-
* The unique identifier for the input/output value. This identifier is used to reference the specific input/output in the NOVA
|
|
4174
|
+
* The unique identifier for the input/output value. This identifier is used to reference the specific input/output variable in the PROFINET device, e.g. NOVA\'s PROFINET service.
|
|
4124
4175
|
* @type {string}
|
|
4125
4176
|
* @memberof ProfinetIO
|
|
4126
4177
|
*/
|
|
@@ -4135,7 +4186,7 @@ export interface ProfinetIO {
|
|
|
4135
4186
|
*/
|
|
4136
4187
|
export interface ProfinetIOData {
|
|
4137
4188
|
/**
|
|
4138
|
-
* The name of the input/output
|
|
4189
|
+
* The name of the input/output variable. This is a human-readable identifier for the value. It distinguishes between different inputs/outputs variables in the system. The variables may be used to set bits or bytes at their pointed to address via [setBusIOValues](setBusIOValues).
|
|
4139
4190
|
* @type {string}
|
|
4140
4191
|
* @memberof ProfinetIOData
|
|
4141
4192
|
*/
|
|
@@ -4147,19 +4198,19 @@ export interface ProfinetIOData {
|
|
|
4147
4198
|
*/
|
|
4148
4199
|
'type': ProfinetIOTypeEnum;
|
|
4149
4200
|
/**
|
|
4150
|
-
* The direction of the input/output
|
|
4201
|
+
* The direction of the input/output variable, indicating whether it is an input or output for the PROFINET device, e.g. NOVA\'s PROFINET service.
|
|
4151
4202
|
* @type {ProfinetIODirection}
|
|
4152
4203
|
* @memberof ProfinetIOData
|
|
4153
4204
|
*/
|
|
4154
4205
|
'direction': ProfinetIODirection;
|
|
4155
4206
|
/**
|
|
4156
|
-
* The byte address of the input/output
|
|
4207
|
+
* The byte address of the input/output variable in the PROFINET device, e.g. NOVA\'s PROFINET service. The byte address is used to locate the specific input/output variable within the device\'s memory or data structure.
|
|
4157
4208
|
* @type {number}
|
|
4158
4209
|
* @memberof ProfinetIOData
|
|
4159
4210
|
*/
|
|
4160
4211
|
'byte_address': number;
|
|
4161
4212
|
/**
|
|
4162
|
-
* The bit address of the input/output
|
|
4213
|
+
* The bit address of the input/output variable within the byte or word address. The bit address is used to specify the exact bit within the byte or word that corresponds to the input/output variable.
|
|
4163
4214
|
* @type {number}
|
|
4164
4215
|
* @memberof ProfinetIOData
|
|
4165
4216
|
*/
|
|
@@ -4168,7 +4219,7 @@ export interface ProfinetIOData {
|
|
|
4168
4219
|
|
|
4169
4220
|
|
|
4170
4221
|
/**
|
|
4171
|
-
*
|
|
4222
|
+
* The direction of the input/output variable, indicating whether it is an input or output for the PROFINET device, e.g. NOVA\'s PROFINET service.
|
|
4172
4223
|
* @export
|
|
4173
4224
|
* @enum {string}
|
|
4174
4225
|
*/
|
|
@@ -4183,7 +4234,7 @@ export type ProfinetIODirection = typeof ProfinetIODirection[keyof typeof Profin
|
|
|
4183
4234
|
|
|
4184
4235
|
|
|
4185
4236
|
/**
|
|
4186
|
-
* Value type of the PROFINET input/output.
|
|
4237
|
+
* Value type of the PROFINET input/output variable. Is used to interpret the corresponding bits correctly.
|
|
4187
4238
|
* @export
|
|
4188
4239
|
* @enum {string}
|
|
4189
4240
|
*/
|
|
@@ -4211,38 +4262,38 @@ export type ProfinetIOTypeEnum = typeof ProfinetIOTypeEnum[keyof typeof Profinet
|
|
|
4211
4262
|
*/
|
|
4212
4263
|
export interface ProfinetInputOutputConfig {
|
|
4213
4264
|
/**
|
|
4214
|
-
* Content of the input
|
|
4265
|
+
* Content of the input/output variable configuration XML file. The XML File has to be embedded as a string by escaping quotes, line breaks and so forth.
|
|
4215
4266
|
* @type {string}
|
|
4216
4267
|
* @memberof ProfinetInputOutputConfig
|
|
4217
4268
|
*/
|
|
4218
4269
|
'config': string;
|
|
4219
4270
|
/**
|
|
4220
|
-
* Offset in bytes for the input
|
|
4271
|
+
* Offset in bytes for the address of the input (perspective of the controller) variables. The offset will be subtracted from to the byte addresses of the sent XML content.
|
|
4221
4272
|
* @type {number}
|
|
4222
4273
|
* @memberof ProfinetInputOutputConfig
|
|
4223
4274
|
*/
|
|
4224
4275
|
'input_offset': number;
|
|
4225
4276
|
/**
|
|
4226
|
-
* Offset in bytes for the output
|
|
4277
|
+
* Offset in bytes for the address of the output (perspective of the controller) variables. The offset will be subtracted from to the byte addresses of the sent XML content.
|
|
4227
4278
|
* @type {number}
|
|
4228
4279
|
* @memberof ProfinetInputOutputConfig
|
|
4229
4280
|
*/
|
|
4230
4281
|
'output_offset': number;
|
|
4231
4282
|
}
|
|
4232
4283
|
/**
|
|
4233
|
-
*
|
|
4284
|
+
* An array of PROFINET slots. PROFINET models each device’s input/output hardware as a hierarchy of slots (modules) and subslots (submodules). A slot can represent a physical or virtual input/output card and each subslot one of its individual channels or functions. Every slot and subslot has unique identifiers that the controller uses to map cyclic input/output data and parameter records to its process image. This slot/subslot separation enables e.g. addressing each input/output stream when establishing input/output application relations (I/O-AR).
|
|
4234
4285
|
* @export
|
|
4235
4286
|
* @interface ProfinetSlotDescription
|
|
4236
4287
|
*/
|
|
4237
4288
|
export interface ProfinetSlotDescription {
|
|
4238
4289
|
/**
|
|
4239
|
-
* The number of the PROFINET slot.
|
|
4290
|
+
* The number/index of the PROFINET slot. Per default, slot 0 is reserved for the device access point (DAP). Slots that are part of the cyclic input/output data exchange start at number 1.
|
|
4240
4291
|
* @type {number}
|
|
4241
4292
|
* @memberof ProfinetSlotDescription
|
|
4242
4293
|
*/
|
|
4243
4294
|
'number': number;
|
|
4244
4295
|
/**
|
|
4245
|
-
* The API number of the PROFINET input
|
|
4296
|
+
* The application process identifier (API) number of the PROFINET input. The API identifies the application relation (AR) that is using the slot.
|
|
4246
4297
|
* @type {number}
|
|
4247
4298
|
* @memberof ProfinetSlotDescription
|
|
4248
4299
|
*/
|
|
@@ -4261,19 +4312,19 @@ export interface ProfinetSlotDescription {
|
|
|
4261
4312
|
*/
|
|
4262
4313
|
export interface ProfinetSubSlotDescription {
|
|
4263
4314
|
/**
|
|
4264
|
-
* The
|
|
4315
|
+
* The number/index of the PROFINET subslot.
|
|
4265
4316
|
* @type {number}
|
|
4266
4317
|
* @memberof ProfinetSubSlotDescription
|
|
4267
4318
|
*/
|
|
4268
4319
|
'number': number;
|
|
4269
4320
|
/**
|
|
4270
|
-
* The
|
|
4321
|
+
* The amount of bytes allocated for the subslot in the input process image buffer.
|
|
4271
4322
|
* @type {number}
|
|
4272
4323
|
* @memberof ProfinetSubSlotDescription
|
|
4273
4324
|
*/
|
|
4274
4325
|
'input_length': number;
|
|
4275
4326
|
/**
|
|
4276
|
-
* The
|
|
4327
|
+
* The amount of bytes allocated for the subslot in the output process image buffer.
|
|
4277
4328
|
* @type {number}
|
|
4278
4329
|
* @memberof ProfinetSubSlotDescription
|
|
4279
4330
|
*/
|
|
@@ -6150,7 +6201,7 @@ export class ApplicationApi extends BaseAPI {
|
|
|
6150
6201
|
export const BUSInputsOutputsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
6151
6202
|
return {
|
|
6152
6203
|
/**
|
|
6153
|
-
* Add
|
|
6204
|
+
* Add the BUS inputs/outputs service to the cell. Starts a containerized service that enables BUS connections via the specified ethernet port.
|
|
6154
6205
|
* @summary Add Service
|
|
6155
6206
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6156
6207
|
* @param {BusIOType} busIOType
|
|
@@ -6203,7 +6254,7 @@ export const BUSInputsOutputsApiAxiosParamCreator = function (configuration?: Co
|
|
|
6203
6254
|
};
|
|
6204
6255
|
},
|
|
6205
6256
|
/**
|
|
6206
|
-
* Adds an input/output to or updates an input/output on the PROFINET device.
|
|
6257
|
+
* Adds an input/output variable to or updates an input/output variable on the PROFINET device, e.g. NOVA\'s PROFINET service. The inputs/outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](addBusIOService) and has to be in accordance with the GSDML file describing the PROFINET device. The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input/output process image. The NOVA\'s PROFINET service\'s configuration can be viewed via [listProfinetIOs](listProfinetIOs). For the PROFINET controller, e.g. a connected PLC, refer to the corresponding third party software, e.g. TIA portal).
|
|
6207
6258
|
* @summary Add PROFINET Input/Output
|
|
6208
6259
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6209
6260
|
* @param {string} io Unique identifier to address an Input/Output in the cell.
|
|
@@ -6255,7 +6306,7 @@ export const BUSInputsOutputsApiAxiosParamCreator = function (configuration?: Co
|
|
|
6255
6306
|
};
|
|
6256
6307
|
},
|
|
6257
6308
|
/**
|
|
6258
|
-
*
|
|
6309
|
+
* Remove the BUS inputs/outputs service from the cell.
|
|
6259
6310
|
* @summary Clear Service
|
|
6260
6311
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6261
6312
|
* @param {number} [completionTimeout]
|
|
@@ -6302,7 +6353,7 @@ export const BUSInputsOutputsApiAxiosParamCreator = function (configuration?: Co
|
|
|
6302
6353
|
};
|
|
6303
6354
|
},
|
|
6304
6355
|
/**
|
|
6305
|
-
* Removes
|
|
6356
|
+
* Removes an input/output variable configuration from the PROFINET device, e.g. NOVA\'s PROFINET service.
|
|
6306
6357
|
* @summary Remove PROFINET Input/Ouptut
|
|
6307
6358
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6308
6359
|
* @param {string} io Unique identifier to address an Input/Output in the cell.
|
|
@@ -6348,7 +6399,7 @@ export const BUSInputsOutputsApiAxiosParamCreator = function (configuration?: Co
|
|
|
6348
6399
|
};
|
|
6349
6400
|
},
|
|
6350
6401
|
/**
|
|
6351
|
-
* Get deployed BUS
|
|
6402
|
+
* Get deployed BUS inputs/outputs service.
|
|
6352
6403
|
* @summary Get Service
|
|
6353
6404
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6354
6405
|
* @param {*} [options] Override http request option.
|
|
@@ -6479,7 +6530,7 @@ export const BUSInputsOutputsApiAxiosParamCreator = function (configuration?: Co
|
|
|
6479
6530
|
};
|
|
6480
6531
|
},
|
|
6481
6532
|
/**
|
|
6482
|
-
* Get description of PROFINET
|
|
6533
|
+
* Get description of NOVA as a PROFINET device.
|
|
6483
6534
|
* @summary Get PROFINET Description
|
|
6484
6535
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6485
6536
|
* @param {*} [options] Override http request option.
|
|
@@ -6521,7 +6572,7 @@ export const BUSInputsOutputsApiAxiosParamCreator = function (configuration?: Co
|
|
|
6521
6572
|
};
|
|
6522
6573
|
},
|
|
6523
6574
|
/**
|
|
6524
|
-
* Get input/output configuration of the PROFINET device as file.
|
|
6575
|
+
* Get input/output variable configuration of the PROFINET device, e.g. NOVA\'s PROFINET service as file. You can specify byte offsets for the input and output variable addresses to get an XML tagmap that is ready to paste to the third party software, e.g. TIA portal.
|
|
6525
6576
|
* @summary PROFINET Inputs/Outputs to File
|
|
6526
6577
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6527
6578
|
* @param {number} [inputOffset]
|
|
@@ -6573,7 +6624,7 @@ export const BUSInputsOutputsApiAxiosParamCreator = function (configuration?: Co
|
|
|
6573
6624
|
};
|
|
6574
6625
|
},
|
|
6575
6626
|
/**
|
|
6576
|
-
* List all BUS
|
|
6627
|
+
* List all input/output descriptions for configured BUS services. The input/output descriptions contain information such as the name, the type and the unit. The I/O direction is given in perspective of the BUS service.
|
|
6577
6628
|
* @summary List Descriptions
|
|
6578
6629
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6579
6630
|
* @param {*} [options] Override http request option.
|
|
@@ -6615,7 +6666,7 @@ export const BUSInputsOutputsApiAxiosParamCreator = function (configuration?: Co
|
|
|
6615
6666
|
};
|
|
6616
6667
|
},
|
|
6617
6668
|
/**
|
|
6618
|
-
* List all PROFINET input and
|
|
6669
|
+
* List descriptions for all configured input/output variables of the PROFINET service. The input/output descriptions contain information such as the name, the type and the unit. The I/O direction is given in perspective of the PROFINET Device, e.g. the configured PROFINET service. The byte and bit addresses are the locations in the PROFINET input/output process image the variable points to. The PROFINET controller as well as NOVA\'s PROFINET service use an I/O variable configuration to interpret the bits of the input and output process image. The NOVA PROFINET service\'s configuration is modified via [addProfinetIO](addProfinetIO) and [setProfinetIOsFromFile](setProfinetIOsFromFile). For the PROFINET controller, e.g. a connected PLC, refer to the corresponding third party software, e.g. TIA portal.
|
|
6619
6670
|
* @summary List PROFINET Input/Output Configuration
|
|
6620
6671
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6621
6672
|
* @param {*} [options] Override http request option.
|
|
@@ -6705,7 +6756,7 @@ export const BUSInputsOutputsApiAxiosParamCreator = function (configuration?: Co
|
|
|
6705
6756
|
};
|
|
6706
6757
|
},
|
|
6707
6758
|
/**
|
|
6708
|
-
* Sets
|
|
6759
|
+
* Sets Input/Output variable configuration on the PROFINET device (i.e. NOVA\'s PROFINET service) from XML file. The Inputs/Outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](addBusIOService) and has to be in accordance with the GSDML file describing the PROFINET device. The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input/output process image. The NOVA\'s PROFINET service\'s configuration can be viewed via [listProfinetIOs](listProfinetIOs). For the PROFINET controller (i.e. a connected PLC), refer to the corresponding engineering system (i.e. TIA portal). You can export the variable configuration of the PROFINET controller as XML file from you engineering system, i.e. TIA portal. The endpoint is built so that the perspective of input and output (PROFINET Device\'s input is PROFINET Controller\'s output) is internally handled, meaning that you can paste the exported XML file here without modifying.
|
|
6709
6760
|
* @summary Set PROFINET Inputs/Outputs from File
|
|
6710
6761
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6711
6762
|
* @param {ProfinetInputOutputConfig} profinetInputOutputConfig
|
|
@@ -6763,7 +6814,7 @@ export const BUSInputsOutputsApiFp = function(configuration?: Configuration) {
|
|
|
6763
6814
|
const localVarAxiosParamCreator = BUSInputsOutputsApiAxiosParamCreator(configuration)
|
|
6764
6815
|
return {
|
|
6765
6816
|
/**
|
|
6766
|
-
* Add
|
|
6817
|
+
* Add the BUS inputs/outputs service to the cell. Starts a containerized service that enables BUS connections via the specified ethernet port.
|
|
6767
6818
|
* @summary Add Service
|
|
6768
6819
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6769
6820
|
* @param {BusIOType} busIOType
|
|
@@ -6778,7 +6829,7 @@ export const BUSInputsOutputsApiFp = function(configuration?: Configuration) {
|
|
|
6778
6829
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6779
6830
|
},
|
|
6780
6831
|
/**
|
|
6781
|
-
* Adds an input/output to or updates an input/output on the PROFINET device.
|
|
6832
|
+
* Adds an input/output variable to or updates an input/output variable on the PROFINET device, e.g. NOVA\'s PROFINET service. The inputs/outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](addBusIOService) and has to be in accordance with the GSDML file describing the PROFINET device. The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input/output process image. The NOVA\'s PROFINET service\'s configuration can be viewed via [listProfinetIOs](listProfinetIOs). For the PROFINET controller, e.g. a connected PLC, refer to the corresponding third party software, e.g. TIA portal).
|
|
6782
6833
|
* @summary Add PROFINET Input/Output
|
|
6783
6834
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6784
6835
|
* @param {string} io Unique identifier to address an Input/Output in the cell.
|
|
@@ -6793,7 +6844,7 @@ export const BUSInputsOutputsApiFp = function(configuration?: Configuration) {
|
|
|
6793
6844
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6794
6845
|
},
|
|
6795
6846
|
/**
|
|
6796
|
-
*
|
|
6847
|
+
* Remove the BUS inputs/outputs service from the cell.
|
|
6797
6848
|
* @summary Clear Service
|
|
6798
6849
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6799
6850
|
* @param {number} [completionTimeout]
|
|
@@ -6807,7 +6858,7 @@ export const BUSInputsOutputsApiFp = function(configuration?: Configuration) {
|
|
|
6807
6858
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6808
6859
|
},
|
|
6809
6860
|
/**
|
|
6810
|
-
* Removes
|
|
6861
|
+
* Removes an input/output variable configuration from the PROFINET device, e.g. NOVA\'s PROFINET service.
|
|
6811
6862
|
* @summary Remove PROFINET Input/Ouptut
|
|
6812
6863
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6813
6864
|
* @param {string} io Unique identifier to address an Input/Output in the cell.
|
|
@@ -6821,7 +6872,7 @@ export const BUSInputsOutputsApiFp = function(configuration?: Configuration) {
|
|
|
6821
6872
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6822
6873
|
},
|
|
6823
6874
|
/**
|
|
6824
|
-
* Get deployed BUS
|
|
6875
|
+
* Get deployed BUS inputs/outputs service.
|
|
6825
6876
|
* @summary Get Service
|
|
6826
6877
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6827
6878
|
* @param {*} [options] Override http request option.
|
|
@@ -6861,7 +6912,7 @@ export const BUSInputsOutputsApiFp = function(configuration?: Configuration) {
|
|
|
6861
6912
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6862
6913
|
},
|
|
6863
6914
|
/**
|
|
6864
|
-
* Get description of PROFINET
|
|
6915
|
+
* Get description of NOVA as a PROFINET device.
|
|
6865
6916
|
* @summary Get PROFINET Description
|
|
6866
6917
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6867
6918
|
* @param {*} [options] Override http request option.
|
|
@@ -6874,7 +6925,7 @@ export const BUSInputsOutputsApiFp = function(configuration?: Configuration) {
|
|
|
6874
6925
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6875
6926
|
},
|
|
6876
6927
|
/**
|
|
6877
|
-
* Get input/output configuration of the PROFINET device as file.
|
|
6928
|
+
* Get input/output variable configuration of the PROFINET device, e.g. NOVA\'s PROFINET service as file. You can specify byte offsets for the input and output variable addresses to get an XML tagmap that is ready to paste to the third party software, e.g. TIA portal.
|
|
6878
6929
|
* @summary PROFINET Inputs/Outputs to File
|
|
6879
6930
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6880
6931
|
* @param {number} [inputOffset]
|
|
@@ -6889,20 +6940,20 @@ export const BUSInputsOutputsApiFp = function(configuration?: Configuration) {
|
|
|
6889
6940
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6890
6941
|
},
|
|
6891
6942
|
/**
|
|
6892
|
-
* List all BUS
|
|
6943
|
+
* List all input/output descriptions for configured BUS services. The input/output descriptions contain information such as the name, the type and the unit. The I/O direction is given in perspective of the BUS service.
|
|
6893
6944
|
* @summary List Descriptions
|
|
6894
6945
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6895
6946
|
* @param {*} [options] Override http request option.
|
|
6896
6947
|
* @throws {RequiredError}
|
|
6897
6948
|
*/
|
|
6898
|
-
async listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
6949
|
+
async listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IODescription2>>> {
|
|
6899
6950
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listBusIODescriptions(cell, options);
|
|
6900
6951
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6901
6952
|
const localVarOperationServerBasePath = operationServerMap['BUSInputsOutputsApi.listBusIODescriptions']?.[localVarOperationServerIndex]?.url;
|
|
6902
6953
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6903
6954
|
},
|
|
6904
6955
|
/**
|
|
6905
|
-
* List all PROFINET input and
|
|
6956
|
+
* List descriptions for all configured input/output variables of the PROFINET service. The input/output descriptions contain information such as the name, the type and the unit. The I/O direction is given in perspective of the PROFINET Device, e.g. the configured PROFINET service. The byte and bit addresses are the locations in the PROFINET input/output process image the variable points to. The PROFINET controller as well as NOVA\'s PROFINET service use an I/O variable configuration to interpret the bits of the input and output process image. The NOVA PROFINET service\'s configuration is modified via [addProfinetIO](addProfinetIO) and [setProfinetIOsFromFile](setProfinetIOsFromFile). For the PROFINET controller, e.g. a connected PLC, refer to the corresponding third party software, e.g. TIA portal.
|
|
6906
6957
|
* @summary List PROFINET Input/Output Configuration
|
|
6907
6958
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6908
6959
|
* @param {*} [options] Override http request option.
|
|
@@ -6929,7 +6980,7 @@ export const BUSInputsOutputsApiFp = function(configuration?: Configuration) {
|
|
|
6929
6980
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
6930
6981
|
},
|
|
6931
6982
|
/**
|
|
6932
|
-
* Sets
|
|
6983
|
+
* Sets Input/Output variable configuration on the PROFINET device (i.e. NOVA\'s PROFINET service) from XML file. The Inputs/Outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](addBusIOService) and has to be in accordance with the GSDML file describing the PROFINET device. The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input/output process image. The NOVA\'s PROFINET service\'s configuration can be viewed via [listProfinetIOs](listProfinetIOs). For the PROFINET controller (i.e. a connected PLC), refer to the corresponding engineering system (i.e. TIA portal). You can export the variable configuration of the PROFINET controller as XML file from you engineering system, i.e. TIA portal. The endpoint is built so that the perspective of input and output (PROFINET Device\'s input is PROFINET Controller\'s output) is internally handled, meaning that you can paste the exported XML file here without modifying.
|
|
6933
6984
|
* @summary Set PROFINET Inputs/Outputs from File
|
|
6934
6985
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6935
6986
|
* @param {ProfinetInputOutputConfig} profinetInputOutputConfig
|
|
@@ -6953,7 +7004,7 @@ export const BUSInputsOutputsApiFactory = function (configuration?: Configuratio
|
|
|
6953
7004
|
const localVarFp = BUSInputsOutputsApiFp(configuration)
|
|
6954
7005
|
return {
|
|
6955
7006
|
/**
|
|
6956
|
-
* Add
|
|
7007
|
+
* Add the BUS inputs/outputs service to the cell. Starts a containerized service that enables BUS connections via the specified ethernet port.
|
|
6957
7008
|
* @summary Add Service
|
|
6958
7009
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6959
7010
|
* @param {BusIOType} busIOType
|
|
@@ -6965,7 +7016,7 @@ export const BUSInputsOutputsApiFactory = function (configuration?: Configuratio
|
|
|
6965
7016
|
return localVarFp.addBusIOService(cell, busIOType, completionTimeout, options).then((request) => request(axios, basePath));
|
|
6966
7017
|
},
|
|
6967
7018
|
/**
|
|
6968
|
-
* Adds an input/output to or updates an input/output on the PROFINET device.
|
|
7019
|
+
* Adds an input/output variable to or updates an input/output variable on the PROFINET device, e.g. NOVA\'s PROFINET service. The inputs/outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](addBusIOService) and has to be in accordance with the GSDML file describing the PROFINET device. The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input/output process image. The NOVA\'s PROFINET service\'s configuration can be viewed via [listProfinetIOs](listProfinetIOs). For the PROFINET controller, e.g. a connected PLC, refer to the corresponding third party software, e.g. TIA portal).
|
|
6969
7020
|
* @summary Add PROFINET Input/Output
|
|
6970
7021
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6971
7022
|
* @param {string} io Unique identifier to address an Input/Output in the cell.
|
|
@@ -6977,7 +7028,7 @@ export const BUSInputsOutputsApiFactory = function (configuration?: Configuratio
|
|
|
6977
7028
|
return localVarFp.addProfinetIO(cell, io, profinetIOData, options).then((request) => request(axios, basePath));
|
|
6978
7029
|
},
|
|
6979
7030
|
/**
|
|
6980
|
-
*
|
|
7031
|
+
* Remove the BUS inputs/outputs service from the cell.
|
|
6981
7032
|
* @summary Clear Service
|
|
6982
7033
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6983
7034
|
* @param {number} [completionTimeout]
|
|
@@ -6988,7 +7039,7 @@ export const BUSInputsOutputsApiFactory = function (configuration?: Configuratio
|
|
|
6988
7039
|
return localVarFp.clearBusIOService(cell, completionTimeout, options).then((request) => request(axios, basePath));
|
|
6989
7040
|
},
|
|
6990
7041
|
/**
|
|
6991
|
-
* Removes
|
|
7042
|
+
* Removes an input/output variable configuration from the PROFINET device, e.g. NOVA\'s PROFINET service.
|
|
6992
7043
|
* @summary Remove PROFINET Input/Ouptut
|
|
6993
7044
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
6994
7045
|
* @param {string} io Unique identifier to address an Input/Output in the cell.
|
|
@@ -6999,7 +7050,7 @@ export const BUSInputsOutputsApiFactory = function (configuration?: Configuratio
|
|
|
6999
7050
|
return localVarFp.deleteProfinetIO(cell, io, options).then((request) => request(axios, basePath));
|
|
7000
7051
|
},
|
|
7001
7052
|
/**
|
|
7002
|
-
* Get deployed BUS
|
|
7053
|
+
* Get deployed BUS inputs/outputs service.
|
|
7003
7054
|
* @summary Get Service
|
|
7004
7055
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7005
7056
|
* @param {*} [options] Override http request option.
|
|
@@ -7030,7 +7081,7 @@ export const BUSInputsOutputsApiFactory = function (configuration?: Configuratio
|
|
|
7030
7081
|
return localVarFp.getBusIOValues(cell, ios, options).then((request) => request(axios, basePath));
|
|
7031
7082
|
},
|
|
7032
7083
|
/**
|
|
7033
|
-
* Get description of PROFINET
|
|
7084
|
+
* Get description of NOVA as a PROFINET device.
|
|
7034
7085
|
* @summary Get PROFINET Description
|
|
7035
7086
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7036
7087
|
* @param {*} [options] Override http request option.
|
|
@@ -7040,7 +7091,7 @@ export const BUSInputsOutputsApiFactory = function (configuration?: Configuratio
|
|
|
7040
7091
|
return localVarFp.getProfinetDescription(cell, options).then((request) => request(axios, basePath));
|
|
7041
7092
|
},
|
|
7042
7093
|
/**
|
|
7043
|
-
* Get input/output configuration of the PROFINET device as file.
|
|
7094
|
+
* Get input/output variable configuration of the PROFINET device, e.g. NOVA\'s PROFINET service as file. You can specify byte offsets for the input and output variable addresses to get an XML tagmap that is ready to paste to the third party software, e.g. TIA portal.
|
|
7044
7095
|
* @summary PROFINET Inputs/Outputs to File
|
|
7045
7096
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7046
7097
|
* @param {number} [inputOffset]
|
|
@@ -7052,17 +7103,17 @@ export const BUSInputsOutputsApiFactory = function (configuration?: Configuratio
|
|
|
7052
7103
|
return localVarFp.getProfinetIOsFromFile(cell, inputOffset, outputOffset, options).then((request) => request(axios, basePath));
|
|
7053
7104
|
},
|
|
7054
7105
|
/**
|
|
7055
|
-
* List all BUS
|
|
7106
|
+
* List all input/output descriptions for configured BUS services. The input/output descriptions contain information such as the name, the type and the unit. The I/O direction is given in perspective of the BUS service.
|
|
7056
7107
|
* @summary List Descriptions
|
|
7057
7108
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7058
7109
|
* @param {*} [options] Override http request option.
|
|
7059
7110
|
* @throws {RequiredError}
|
|
7060
7111
|
*/
|
|
7061
|
-
listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
7112
|
+
listBusIODescriptions(cell: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<IODescription2>> {
|
|
7062
7113
|
return localVarFp.listBusIODescriptions(cell, options).then((request) => request(axios, basePath));
|
|
7063
7114
|
},
|
|
7064
7115
|
/**
|
|
7065
|
-
* List all PROFINET input and
|
|
7116
|
+
* List descriptions for all configured input/output variables of the PROFINET service. The input/output descriptions contain information such as the name, the type and the unit. The I/O direction is given in perspective of the PROFINET Device, e.g. the configured PROFINET service. The byte and bit addresses are the locations in the PROFINET input/output process image the variable points to. The PROFINET controller as well as NOVA\'s PROFINET service use an I/O variable configuration to interpret the bits of the input and output process image. The NOVA PROFINET service\'s configuration is modified via [addProfinetIO](addProfinetIO) and [setProfinetIOsFromFile](setProfinetIOsFromFile). For the PROFINET controller, e.g. a connected PLC, refer to the corresponding third party software, e.g. TIA portal.
|
|
7066
7117
|
* @summary List PROFINET Input/Output Configuration
|
|
7067
7118
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7068
7119
|
* @param {*} [options] Override http request option.
|
|
@@ -7083,7 +7134,7 @@ export const BUSInputsOutputsApiFactory = function (configuration?: Configuratio
|
|
|
7083
7134
|
return localVarFp.setBusIOValues(cell, iOValue, options).then((request) => request(axios, basePath));
|
|
7084
7135
|
},
|
|
7085
7136
|
/**
|
|
7086
|
-
* Sets
|
|
7137
|
+
* Sets Input/Output variable configuration on the PROFINET device (i.e. NOVA\'s PROFINET service) from XML file. The Inputs/Outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](addBusIOService) and has to be in accordance with the GSDML file describing the PROFINET device. The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input/output process image. The NOVA\'s PROFINET service\'s configuration can be viewed via [listProfinetIOs](listProfinetIOs). For the PROFINET controller (i.e. a connected PLC), refer to the corresponding engineering system (i.e. TIA portal). You can export the variable configuration of the PROFINET controller as XML file from you engineering system, i.e. TIA portal. The endpoint is built so that the perspective of input and output (PROFINET Device\'s input is PROFINET Controller\'s output) is internally handled, meaning that you can paste the exported XML file here without modifying.
|
|
7087
7138
|
* @summary Set PROFINET Inputs/Outputs from File
|
|
7088
7139
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7089
7140
|
* @param {ProfinetInputOutputConfig} profinetInputOutputConfig
|
|
@@ -7104,7 +7155,7 @@ export const BUSInputsOutputsApiFactory = function (configuration?: Configuratio
|
|
|
7104
7155
|
*/
|
|
7105
7156
|
export class BUSInputsOutputsApi extends BaseAPI {
|
|
7106
7157
|
/**
|
|
7107
|
-
* Add
|
|
7158
|
+
* Add the BUS inputs/outputs service to the cell. Starts a containerized service that enables BUS connections via the specified ethernet port.
|
|
7108
7159
|
* @summary Add Service
|
|
7109
7160
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7110
7161
|
* @param {BusIOType} busIOType
|
|
@@ -7118,7 +7169,7 @@ export class BUSInputsOutputsApi extends BaseAPI {
|
|
|
7118
7169
|
}
|
|
7119
7170
|
|
|
7120
7171
|
/**
|
|
7121
|
-
* Adds an input/output to or updates an input/output on the PROFINET device.
|
|
7172
|
+
* Adds an input/output variable to or updates an input/output variable on the PROFINET device, e.g. NOVA\'s PROFINET service. The inputs/outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](addBusIOService) and has to be in accordance with the GSDML file describing the PROFINET device. The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input/output process image. The NOVA\'s PROFINET service\'s configuration can be viewed via [listProfinetIOs](listProfinetIOs). For the PROFINET controller, e.g. a connected PLC, refer to the corresponding third party software, e.g. TIA portal).
|
|
7122
7173
|
* @summary Add PROFINET Input/Output
|
|
7123
7174
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7124
7175
|
* @param {string} io Unique identifier to address an Input/Output in the cell.
|
|
@@ -7132,7 +7183,7 @@ export class BUSInputsOutputsApi extends BaseAPI {
|
|
|
7132
7183
|
}
|
|
7133
7184
|
|
|
7134
7185
|
/**
|
|
7135
|
-
*
|
|
7186
|
+
* Remove the BUS inputs/outputs service from the cell.
|
|
7136
7187
|
* @summary Clear Service
|
|
7137
7188
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7138
7189
|
* @param {number} [completionTimeout]
|
|
@@ -7145,7 +7196,7 @@ export class BUSInputsOutputsApi extends BaseAPI {
|
|
|
7145
7196
|
}
|
|
7146
7197
|
|
|
7147
7198
|
/**
|
|
7148
|
-
* Removes
|
|
7199
|
+
* Removes an input/output variable configuration from the PROFINET device, e.g. NOVA\'s PROFINET service.
|
|
7149
7200
|
* @summary Remove PROFINET Input/Ouptut
|
|
7150
7201
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7151
7202
|
* @param {string} io Unique identifier to address an Input/Output in the cell.
|
|
@@ -7158,7 +7209,7 @@ export class BUSInputsOutputsApi extends BaseAPI {
|
|
|
7158
7209
|
}
|
|
7159
7210
|
|
|
7160
7211
|
/**
|
|
7161
|
-
* Get deployed BUS
|
|
7212
|
+
* Get deployed BUS inputs/outputs service.
|
|
7162
7213
|
* @summary Get Service
|
|
7163
7214
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7164
7215
|
* @param {*} [options] Override http request option.
|
|
@@ -7195,7 +7246,7 @@ export class BUSInputsOutputsApi extends BaseAPI {
|
|
|
7195
7246
|
}
|
|
7196
7247
|
|
|
7197
7248
|
/**
|
|
7198
|
-
* Get description of PROFINET
|
|
7249
|
+
* Get description of NOVA as a PROFINET device.
|
|
7199
7250
|
* @summary Get PROFINET Description
|
|
7200
7251
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7201
7252
|
* @param {*} [options] Override http request option.
|
|
@@ -7207,7 +7258,7 @@ export class BUSInputsOutputsApi extends BaseAPI {
|
|
|
7207
7258
|
}
|
|
7208
7259
|
|
|
7209
7260
|
/**
|
|
7210
|
-
* Get input/output configuration of the PROFINET device as file.
|
|
7261
|
+
* Get input/output variable configuration of the PROFINET device, e.g. NOVA\'s PROFINET service as file. You can specify byte offsets for the input and output variable addresses to get an XML tagmap that is ready to paste to the third party software, e.g. TIA portal.
|
|
7211
7262
|
* @summary PROFINET Inputs/Outputs to File
|
|
7212
7263
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7213
7264
|
* @param {number} [inputOffset]
|
|
@@ -7221,7 +7272,7 @@ export class BUSInputsOutputsApi extends BaseAPI {
|
|
|
7221
7272
|
}
|
|
7222
7273
|
|
|
7223
7274
|
/**
|
|
7224
|
-
* List all BUS
|
|
7275
|
+
* List all input/output descriptions for configured BUS services. The input/output descriptions contain information such as the name, the type and the unit. The I/O direction is given in perspective of the BUS service.
|
|
7225
7276
|
* @summary List Descriptions
|
|
7226
7277
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7227
7278
|
* @param {*} [options] Override http request option.
|
|
@@ -7233,7 +7284,7 @@ export class BUSInputsOutputsApi extends BaseAPI {
|
|
|
7233
7284
|
}
|
|
7234
7285
|
|
|
7235
7286
|
/**
|
|
7236
|
-
* List all PROFINET input and
|
|
7287
|
+
* List descriptions for all configured input/output variables of the PROFINET service. The input/output descriptions contain information such as the name, the type and the unit. The I/O direction is given in perspective of the PROFINET Device, e.g. the configured PROFINET service. The byte and bit addresses are the locations in the PROFINET input/output process image the variable points to. The PROFINET controller as well as NOVA\'s PROFINET service use an I/O variable configuration to interpret the bits of the input and output process image. The NOVA PROFINET service\'s configuration is modified via [addProfinetIO](addProfinetIO) and [setProfinetIOsFromFile](setProfinetIOsFromFile). For the PROFINET controller, e.g. a connected PLC, refer to the corresponding third party software, e.g. TIA portal.
|
|
7237
7288
|
* @summary List PROFINET Input/Output Configuration
|
|
7238
7289
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7239
7290
|
* @param {*} [options] Override http request option.
|
|
@@ -7258,7 +7309,7 @@ export class BUSInputsOutputsApi extends BaseAPI {
|
|
|
7258
7309
|
}
|
|
7259
7310
|
|
|
7260
7311
|
/**
|
|
7261
|
-
* Sets
|
|
7312
|
+
* Sets Input/Output variable configuration on the PROFINET device (i.e. NOVA\'s PROFINET service) from XML file. The Inputs/Outputs map variables to specific memory addresses in the process image. The default process image has buffer lengths of 64 bytes for input and output. The size of the buffer is determined by the `config_file_content` that is passed in [addBusIOService](addBusIOService) and has to be in accordance with the GSDML file describing the PROFINET device. The PROFINET controller as well as NOVA\'s PROFINET service use an input/output variable configuration to interpret the bits of the input/output process image. The NOVA\'s PROFINET service\'s configuration can be viewed via [listProfinetIOs](listProfinetIOs). For the PROFINET controller (i.e. a connected PLC), refer to the corresponding engineering system (i.e. TIA portal). You can export the variable configuration of the PROFINET controller as XML file from you engineering system, i.e. TIA portal. The endpoint is built so that the perspective of input and output (PROFINET Device\'s input is PROFINET Controller\'s output) is internally handled, meaning that you can paste the exported XML file here without modifying.
|
|
7262
7313
|
* @summary Set PROFINET Inputs/Outputs from File
|
|
7263
7314
|
* @param {string} cell Unique identifier addressing a cell in all API calls.
|
|
7264
7315
|
* @param {ProfinetInputOutputConfig} profinetInputOutputConfig
|