You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _includes/docs/pe/user-guide/integrations/opc-ua.md
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -203,7 +203,9 @@ Specify such parameters:
203
203
204
204
- Mapping:
205
205
- MappingType: Fully Qualified Name (can be *Fully Qualified Name* / *ID*)
206
-
- Device Node Pattern: `Objects\.BuildingAutomation\.AirConditioner_\d+$` (regular expression used to match scanned OPC UA Node FQNs/IDs to device name.)
206
+
- Device Node Pattern: `Objects\.BuildingAutomation\.AirConditioner_\d+$` (regular expression used to match scanned OPC UA Node FQNs/IDs to device name.
207
+
In this sample, path on OPC UA Explorer is `Objects/BuildingAutomation/AirConditioner_X`, where X is a number from 1 to N.
208
+
That's why we use `Objects\.BuildingAutomation\.AirConditioner_\d+$` as regular expression, because `\d+` means any number from 1 to *N*, and `$` means the end of the string)
207
209
- Subscription tags (list of node tags (**Path**) to subscribe with mappings to keys (**Key**) used in the output message):
- Identity: Anonymous (can be *Anonymous / Username*)
312
312
- Mapping:
313
-
- Device Node Pattern: `Objects\.BuildingAutomation\.AirConditioner_\d+$` (regular expression used to match scanned OPC UA Node FQNs/IDs to device name.)
314
313
- MappingType: Fully Qualified Name (can be *Fully Qualified Name* / *ID*)
314
+
- Device Node Pattern: `Objects\.BuildingAutomation\.AirConditioner_\d+$` (regular expression used to match scanned OPC UA Node FQNs/IDs to device name.
315
+
In this sample, path on OPC UA Explorer is `Objects/BuildingAutomation/AirConditioner_X`, where X is a number from 1 to *N*.
316
+
That's why we use `Objects\.BuildingAutomation\.AirConditioner_\d+$` as regular expression, because `\d+` means any number from 1 to *N*, and `$` means the end of the string)
315
317
- Subscription tags (list of node tags (**Path**) to subscribe with mappings to keys (**Key**) used in the output message):
0 commit comments