@wandelbots/nova-api 25.8.0-dev.45 → 25.8.0-dev.47
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 +7 -7
- package/v2/api.js.map +1 -1
- package/v2/api.ts +8 -8
package/v2/api.ts
CHANGED
|
@@ -385,13 +385,19 @@ export interface BusIOProfinet {
|
|
|
385
385
|
*/
|
|
386
386
|
'bus_type'?: BusIOProfinetBusTypeEnum;
|
|
387
387
|
/**
|
|
388
|
-
* Used to enable IP communication through the same physical interface while
|
|
388
|
+
* Used to enable IP communication through the same physical ethernet interface while PROFINET driver is active.
|
|
389
389
|
* @type {BusIOProfinetNetwork}
|
|
390
390
|
* @memberof BusIOProfinet
|
|
391
391
|
*/
|
|
392
392
|
'network_config'?: BusIOProfinetNetwork;
|
|
393
393
|
/**
|
|
394
|
-
*
|
|
394
|
+
* IP address of the PLC to establish PROFINET communication with. The IP address is used to configure the host machine\'s firewall. The firewall configuration is applied while the BUS input/output service is active. Without proper firewall configuration, PROFINET device discovery, configuration exchanges, and real-time cyclic data communication will fail.
|
|
395
|
+
* @type {string}
|
|
396
|
+
* @memberof BusIOProfinet
|
|
397
|
+
*/
|
|
398
|
+
'plc_ip': string;
|
|
399
|
+
/**
|
|
400
|
+
* MAC address of the physical ethernet interface that you want to use for PROFINET communication.
|
|
395
401
|
* @type {string}
|
|
396
402
|
* @memberof BusIOProfinet
|
|
397
403
|
*/
|
|
@@ -2138,12 +2144,6 @@ export interface InitializeJoggingRequest {
|
|
|
2138
2144
|
* @memberof InitializeJoggingRequest
|
|
2139
2145
|
*/
|
|
2140
2146
|
'response_coordinate_system'?: string;
|
|
2141
|
-
/**
|
|
2142
|
-
* Defines an input/output that is listened to during the movement. Execution pauses if the defined comparator evaluates to `true`.
|
|
2143
|
-
* @type {string}
|
|
2144
|
-
* @memberof InitializeJoggingRequest
|
|
2145
|
-
*/
|
|
2146
|
-
'pause_on_io'?: string;
|
|
2147
2147
|
}
|
|
2148
2148
|
|
|
2149
2149
|
export const InitializeJoggingRequestMessageTypeEnum = {
|