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: content/hardware/07.opta/opta-family/opta/tutorials/01.user-manual/content.md
+13-17Lines changed: 13 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -1231,35 +1231,33 @@ The [**OPC UA library**](https://github.com/arduino-libraries/Arduino_OPC_UA) su
1231
1231
1232
1232
### Setting up the OPC UA Server
1233
1233
1234
-
To set up the **OPC UA** server, upload the [**`opta_opcua_server`** example](https://github.com/arduino-libraries/Arduino_OPC_UA/blob/main/examples/opta_opcua_server/opta_opcua_server.ino) to your Opta. This can be done using the Arduino IDE or the Arduino CLI tool with the command.
1234
+
To set up the **OPC UA** server, upload the [**`opta_opcua_server`** example](https://github.com/arduino-libraries/Arduino_OPC_UA/blob/main/examples/opta_opcua_server/opta_opcua_server.ino) to your Opta. This can be done using either the Arduino IDE or the Arduino CLI.
1235
1235
1236
1236

1237
1237
1238
-
For running with the Arduino CLI tool, the following command can be used:
1238
+
Run the following command to compile and upload the example if used with the Arduino CLI:

1245
1245
1246
-
***If you are not familiar with the __Arduino CLI tool__, you can refer to the getting started found [here](https://arduino.github.io/arduino-cli/1.1/getting-started/).***
1246
+
***If you are not familiar with the __Arduino CLI tool__, you can refer to the getting started documentation found [here](https://arduino.github.io/arduino-cli/1.1/getting-started/).***
1247
1247
1248
-
Next, connect the Opta to a network using its Ethernet port, ensuring that the network has a DHCP-enabled router or switch to assign an IP address to the device.
1248
+
Next, connect the Opta to a network via its Ethernet port. Please make sure the network has a DHCP-enabled router or switch to assign an IP address to the device.
1249
1249
1250
-
Open a serial monitor to verify the status of the server and obtain the device's IP address. The output will include information about the server, including its **discovery URL**.
1250
+
Use a serial monitor to check the server status and retrieve the device's IP address. You can use the Arduino IDE Serial Monitor or other programs like [**Putty**](https://www.putty.org/) to establish a serial connection.
1251
1251
1252
-
The Arduino IDE Serial Monitor can be used to get information about the server or programs like [**Putty**](https://www.putty.org/) to open a Serial connection.
1253
-
1254
-
The following clip shows Opta running OPC UA server script and showing server information on the Serial Monitor:
1252
+
The output will display details such as the **discovery URL**. Below is an example of the server log output on the Arduino IDE Serial Monitor:
1255
1253
1256
1254

1257
1255
1258
1256
With [**Putty**](https://www.putty.org/), the following serial connection shows the server information:
1259
1257
1260
1258

1261
1259
1262
-
The output information extracted is as follows and you should see similar information:
1260
+
The output information is as follows and you should see similar information:
1263
1261
1264
1262
```bash
1265
1263
[2024-12-11 22:19:08.000 (UTC+0000)] [32minfo/eventloop[0m Starting the EventLoop
@@ -1287,13 +1285,13 @@ The output information extracted is as follows and you should see similar inform
In this example, the output displays the IP address:
1288
+
In this example, the output displays the **IP address**:
1291
1289
1292
1290
```bash
1293
1291
192.168.100.191
1294
1292
```
1295
1293
1296
-
The discovery URL is as follows, which indicates the OPC UA server is running at:
1294
+
The **discovery URL** is as follows, which indicates the OPC UA server is running at:
1297
1295
1298
1296
```bash
1299
1297
opc.tcp://192.168.100.191:4840
@@ -1303,9 +1301,9 @@ You can now connect to the OPC UA server running on Opta.
1303
1301
1304
1302
### Connecting to the OPC UA Server
1305
1303
1306
-
Once the server is running, use any OPC UA compatible client to connect to the server using the IP address and port printed in the serial monitor output. This allows you to explore and interact with the device and any attached expansion boards.
1304
+
Once the server is running, you can use any OPC UA compatible client to connect to the server using the discovery URL. This allows interaction with the device and any connected expansion modules.
1307
1305
1308
-
The [**opcua-client-gui**](https://github.com/FreeOpcUa/opcua-client-gui) client will be used to connect to the OPC UA server running on Opta.
1306
+
The [**opcua-client-gui**](https://github.com/FreeOpcUa/opcua-client-gui) client will be used to connect to the OPC UA server running on Optain this section.
1309
1307
1310
1308
### Using OPC UA GUI Client for Testing
1311
1309
@@ -1352,11 +1350,9 @@ It will launch the GUI and connect to the OPC UA server running on the Opta usin
1352
1350
1353
1351

1354
1352
1355
-
With this, Opta is ready to handle the OPC UA protocol through simple [OPC UA GUI client](https://github.com/FreeOpcUa/opcua-client-gui).
1356
-
1357
-
The client allows connection management, browsing, attribute or reference viewing, variable subscription, event subscription, value writing, secure communication, method invocation, data plotting, and state persistence.
1353
+
With this, Opta is ready to handle the OPC UA protocol through simple [OPC UA GUI client](https://github.com/FreeOpcUa/opcua-client-gui). The interface allows browsing, subscribing to variables, writing values, and performing other interactions.
1358
1354
1359
-
***For more information about the simple OPC UA GUI client and dedicatd installation instruction sets, please refer to [**opcua-client-gui** repository](https://github.com/FreeOpcUa/opcua-client-gui).***
1355
+
***For more information about the simple OPC UA GUI client and dedicatd installation instruction sets, please refer to [__opcua-client-gui__ repository](https://github.com/FreeOpcUa/opcua-client-gui).***
0 commit comments