Skip to content

Commit e40dc6f

Browse files
authored
Chore: rename library to "Arduino_OPC_UA". (#20)
1 parent 690e3f6 commit e40dc6f

File tree

10 files changed

+17
-17
lines changed

10 files changed

+17
-17
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
:floppy_disk: `Arduino_open62541`
2-
=================================
3-
[![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)
4-
[![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)
5-
[![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)
1+
:floppy_disk: `Arduino_OPC_UA`
2+
==============================
3+
[![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)
4+
[![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)
5+
[![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)
66

77
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.
88

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

3636
### How-to-`opcua-client-gui`
3737
```bash

docs/api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
Members | Descriptions
44
--------------------------------|---------------------------------------------
5-
`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).
5+
`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).
66

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

9-
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).
9+
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).
1010

1111
## Summary
1212

examples/opcua_server/opcua_server.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* INCLUDE
33
**************************************************************************************/
44

5-
#include <Arduino_open62541.h>
5+
#include <Arduino_OPC_UA.h>
66
#include <PortentaEthernet.h>
77
#include <OptaBlue.h> /* Arduino_Opta_Blueprint */
88
#include <mbed_rtc_time.h>

extras/precompile/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ RUN apt-get update && \
55
apt-get clean && \
66
rm -rf /var/lib/apt/lists/*
77

8-
CMD ["/bin/bash", "-c", "cd /Arduino_open62541; ./extras/precompile/precompile.sh; exit"]
8+
CMD ["/bin/bash", "-c", "cd /Arduino_OPC_UA; ./extras/precompile/precompile.sh; exit"]

extras/precompile/docker-run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/bash
22
set -euo pipefail
33
IFS=$'\n\t'
4-
docker run -it -v ${PWD}/../../:/Arduino_open62541 open62541_precompile_lib
4+
docker run -it -v ${PWD}/../../:/Arduino_OPC_UA open62541_precompile_lib

keywords.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#######################################
2-
# Syntax Coloring Map for Arduino_open62541
2+
# Syntax Coloring Map for Arduino_OPC_UA
33
#######################################
44

55
#######################################

library.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
name=Arduino_open62541
1+
name=Arduino_OPC_UA
22
version=0.0.1
33
author=Arduino <info@arduino.cc>
44
maintainer=Arduino <info@arduino.cc>
55
sentence=Arduino port of the open62541 providing OPC/UA for Arduino Opta.
66
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.
77
category=Communication
88
architectures=mbed_opta
9-
url=https://github.com/bcmi-labs/Arduino_open62541
9+
url=https://github.com/bcmi-labs/Arduino_OPC_UA
1010
ldflags=-lopen62541
11-
includes=Arduino_open62541.h
11+
includes=Arduino_OPC_UA.h
1212
precompiled=true
1313
depends=Arduino_Opta_Blueprint

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Opta.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
**************************************************************************************/
3131

3232
/**
33-
* opcua is used as enclosing namespace for all parts of the Arduino_open62541 library
33+
* opcua is used as enclosing namespace for all parts of the Arduino_OPC_UA library
3434
* in order to avoid naming conflicts with already existing frameworks pertaining the
3535
* Arduino Opta.
3636
*/

0 commit comments

Comments
 (0)