controls-kt/controls-opcua/README.md

28 lines
671 B
Markdown
Raw Normal View History

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-05-15 22:49:08 +03:00
The Maven coordinates of this project are `space.kscience:controls-opcua:0.4.0-dev-1`.
2023-08-16 18:26:21 +03:00
**Gradle Kotlin DSL:**
```kotlin
repositories {
maven("https://repo.kotlin.link")
mavenCentral()
}
dependencies {
2024-05-15 22:49:08 +03:00
implementation("space.kscience:controls-opcua:0.4.0-dev-1")
2023-08-16 18:26:21 +03:00
}
```