controls-kt/controls-magix/README.md

28 lines
726 B
Markdown
Raw Permalink Normal View History

2023-08-23 16:21:11 +03:00
# Module controls-magix
Magix service for binding controls devices (both as RPC client and server)
## Features
- [controlsMagix](src/commonMain/kotlin/space/kscience/controls/client/controlsMagix.kt) : Connect a `DeviceManage` with one or many devices to the Magix endpoint
- [DeviceClient](src/commonMain/kotlin/space/kscience/controls/client/DeviceClient.kt) : A remote connector to Controls-kt device via Magix
2023-05-03 11:05:54 +03:00
## Usage
## Artifact:
2024-06-17 17:49:12 +03:00
The Maven coordinates of this project are `space.kscience:controls-magix:0.4.0-dev-4`.
2023-05-03 11:05:54 +03:00
**Gradle Kotlin DSL:**
```kotlin
repositories {
maven("https://repo.kotlin.link")
mavenCentral()
}
dependencies {
2024-06-17 17:49:12 +03:00
implementation("space.kscience:controls-magix:0.4.0-dev-4")
2023-05-03 11:05:54 +03:00
}
```