2023-05-03 11:05:54 +03:00
|
|
|
# Module controls-opcua
|
|
|
|
|
2023-08-23 16:21:11 +03:00
|
|
|
A client and server connectors for OPC-UA via Eclipse Milo
|
|
|
|
|
|
|
|
## Features
|
|
|
|
|
|
|
|
- [opcuaClient](src/main/kotlin/space/kscience/controls/opcua/client) : Connect a Controls-kt as a client to OPC UA server
|
|
|
|
- [opcuaServer](src/main/kotlin/space/kscience/controls/opcua/server) : Create an OPC UA server on top of Controls-kt device (or device hub)
|
2023-05-03 11:05:54 +03:00
|
|
|
|
|
|
|
|
2023-08-16 18:26:21 +03:00
|
|
|
## Usage
|
|
|
|
|
|
|
|
## Artifact:
|
|
|
|
|
2024-03-04 15:58:53 +03:00
|
|
|
The Maven coordinates of this project are `space.kscience:controls-opcua:0.3.0`.
|
2023-08-16 18:26:21 +03:00
|
|
|
|
|
|
|
**Gradle Kotlin DSL:**
|
|
|
|
```kotlin
|
|
|
|
repositories {
|
|
|
|
maven("https://repo.kotlin.link")
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2024-03-04 15:58:53 +03:00
|
|
|
implementation("space.kscience:controls-opcua:0.3.0")
|
2023-08-16 18:26:21 +03:00
|
|
|
}
|
|
|
|
```
|