Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
:floppy_disk: `Arduino_open62541`
=================================
[![Compile Examples](https://github.com/bcmi-labs/Arduino_open62541/workflows/Compile%20Examples/badge.svg)](https://github.com/bcmi-labs/Arduino_open62541/actions?workflow=Compile+Examples)
[![Arduino Lint](https://github.com/bcmi-labs/Arduino_open62541/actions/workflows/arduino-lint.yml/badge.svg)](https://github.com/bcmi-labs/Arduino_open62541/actions/workflows/arduino-lint.yml)
[![Sync Labels status](https://github.com/bcmi-labs/Arduino_open62541/actions/workflows/sync-labels.yml/badge.svg)](https://github.com/bcmi-labs/Arduino_open62541/actions/workflows/sync-labels.yml)
:floppy_disk: `Arduino_OPC_UA`
==============================
[![Compile Examples](https://github.com/bcmi-labs/Arduino_OPC_UA/workflows/Compile%20Examples/badge.svg)](https://github.com/bcmi-labs/Arduino_OPC_UA/actions?workflow=Compile+Examples)
[![Arduino Lint](https://github.com/bcmi-labs/Arduino_OPC_UA/actions/workflows/arduino-lint.yml/badge.svg)](https://github.com/bcmi-labs/Arduino_OPC_UA/actions/workflows/arduino-lint.yml)
[![Sync Labels status](https://github.com/bcmi-labs/Arduino_OPC_UA/actions/workflows/sync-labels.yml/badge.svg)](https://github.com/bcmi-labs/Arduino_OPC_UA/actions/workflows/sync-labels.yml)

This library provides an implementation of [OPC/UA](https://en.wikipedia.org/wiki/OPC_Unified_Architecture) by porting the Fraunhofer [`open62541`](https://github.com/open62541/open62541) for the Arduino [Opta](https://www.arduino.cc/pro/hardware-arduino-opta/) `microPLC` family.

Expand Down Expand Up @@ -31,7 +31,7 @@ $ cat /dev/ttyACM0
[2024-06-21 02:30:19.000 (UTC+0000)] info/server New DiscoveryUrl added: opc.tcp://192.168.8.137:4840
```
* Connect to OPC/UA server using IP/port as printed by the Arduino Opta
![image](https://github.com/bcmi-labs/Arduino_open62541/assets/3931733/ac153e79-6648-4808-9c4f-17aaf4305d89)
![image](https://github.com/bcmi-labs/Arduino_OPC_UA/assets/3931733/ac153e79-6648-4808-9c4f-17aaf4305d89)

### How-to-`opcua-client-gui`
```bash
Expand Down
4 changes: 2 additions & 2 deletions docs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

Members | Descriptions
--------------------------------|---------------------------------------------
`namespace ` [`opcua`](#namespaceopcua) | opcua is used as enclosing namespace for all parts of the Arduino_open62541 library in order to avoid naming conflicts with already existing frameworks pertaining the Arduino [Opta](#classopcua_1_1_opta).
`namespace ` [`opcua`](#namespaceopcua) | opcua is used as enclosing namespace for all parts of the Arduino_OPC_UA library in order to avoid naming conflicts with already existing frameworks pertaining the Arduino [Opta](#classopcua_1_1_opta).

# namespace `opcua` <a id="namespaceopcua" class="anchor"></a>

opcua is used as enclosing namespace for all parts of the Arduino_open62541 library in order to avoid naming conflicts with already existing frameworks pertaining the Arduino [Opta](#classopcua_1_1_opta).
opcua is used as enclosing namespace for all parts of the Arduino_OPC_UA library in order to avoid naming conflicts with already existing frameworks pertaining the Arduino [Opta](#classopcua_1_1_opta).

## Summary

Expand Down
2 changes: 1 addition & 1 deletion examples/opcua_server/opcua_server.ino
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* INCLUDE
**************************************************************************************/

#include <Arduino_open62541.h>
#include <Arduino_OPC_UA.h>
#include <PortentaEthernet.h>
#include <OptaBlue.h> /* Arduino_Opta_Blueprint */
#include <mbed_rtc_time.h>
Expand Down
2 changes: 1 addition & 1 deletion extras/precompile/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ RUN apt-get update && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

CMD ["/bin/bash", "-c", "cd /Arduino_open62541; ./extras/precompile/precompile.sh; exit"]
CMD ["/bin/bash", "-c", "cd /Arduino_OPC_UA; ./extras/precompile/precompile.sh; exit"]
2 changes: 1 addition & 1 deletion extras/precompile/docker-run.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
set -euo pipefail
IFS=$'\n\t'
docker run -it -v ${PWD}/../../:/Arduino_open62541 open62541_precompile_lib
docker run -it -v ${PWD}/../../:/Arduino_OPC_UA open62541_precompile_lib
2 changes: 1 addition & 1 deletion keywords.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#######################################
# Syntax Coloring Map for Arduino_open62541
# Syntax Coloring Map for Arduino_OPC_UA
#######################################

#######################################
Expand Down
6 changes: 3 additions & 3 deletions library.properties
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name=Arduino_open62541
name=Arduino_OPC_UA
version=0.0.1
author=Arduino <info@arduino.cc>
maintainer=Arduino <info@arduino.cc>
sentence=Arduino port of the open62541 providing OPC/UA for Arduino Opta.
paragraph=This library is an Arduino port of open62541, an open source implementation of OPC UA (OPC Unified Architecture / IEC 62541) written in the C language.
category=Communication
architectures=mbed_opta
url=https://github.com/bcmi-labs/Arduino_open62541
url=https://github.com/bcmi-labs/Arduino_OPC_UA
ldflags=-lopen62541
includes=Arduino_open62541.h
includes=Arduino_OPC_UA.h
precompiled=true
depends=Arduino_Opta_Blueprint
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
2 changes: 1 addition & 1 deletion src/Opta.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
**************************************************************************************/

/**
* opcua is used as enclosing namespace for all parts of the Arduino_open62541 library
* opcua is used as enclosing namespace for all parts of the Arduino_OPC_UA library
* in order to avoid naming conflicts with already existing frameworks pertaining the
* Arduino Opta.
*/
Expand Down
Loading