Qt OPC UA

The Qt OPC UA module implements a Qt API to interact with OPC UA servers on top of the open62541 库。

The QML API is still in development but are available as a technology preview. This means those parts are unstable, likely to change, and provided as a convenience only.

使用模块

QML API

The QML 类型 are available through the QtOpcUa 导入。要使用类型,添加以下 import 语句到 .qml 文件:

import QtOpcUa as QtOpcUa
					

C++ API

使用 C++ API 要求直接或透过其它依赖链接到模块库。一些构建工具对此提供专用支持,包括 CMake 和 qmake。

构建采用 CMake

使用 find_package() 命令以在 Qt6 包中定位所需的模块组件:

find_package(Qt6 REQUIRED COMPONENTS OpcUa)
target_link_libraries(mytarget Qt::OpcUa)
					

采用 qmake 构建

要配置采用 qmake 构建模块,把模块作为 Qt 变量的值添加到工程 .pro 文件中:

QT += opcua
					

文章和指南

范例

参考

许可和归属

Qt OPC UA is available under commercial licenses from Qt 公司 。此外,它在自由软件许可下也是可用的: GNU LGPL (次一般公共许可) 第 3 版 ,或 GNU GPL (一般公共许可) 第 2 版 。见 Qt 许可 进一步了解细节。

Furthermore, Qt OPC UA in Qt 6.7.2 may contain third-party modules under following permissive licenses:

Open62541, version 1.3.9

Mozilla Public License 2.0 and Creative Commons Zero v1.0 Universal and Creative Commons Attribution Share Alike 4.0 International and BSD 3-Clause "New" or "Revised" License and Apache License 2.0 and MIT License