controls-kt/controls-core
2023-08-23 16:23:27 +03:00
..
api fix repositores 2023-08-23 16:23:27 +03:00
src Replace JSSC with JSerialComm 2023-08-16 10:42:44 +03:00
build.gradle.kts All done for 0.2.0 release 2023-08-23 16:21:11 +03:00
README.md All done for 0.2.0 release 2023-08-23 16:21:11 +03:00

Module controls-core

Core interfaces for building a device server

Features

  • device : Device API with subscription (asynchronous and pseudo-synchronous properties)
  • deviceMessage : Specification for messages used to communicate between Controls-kt devices.
  • deviceHub : Grouping of devices into local tree-like hubs.
  • deviceSpec : Mechanics and type-safe builders for devices. Including separation of device specification and device state.
  • deviceManager : DataForge DI integration for devices. Includes device builders.
  • ports : Working with asynchronous data sending and receiving raw byte arrays

Usage

Artifact:

The Maven coordinates of this project are space.kscience:controls-core:0.2.0.

Gradle Kotlin DSL:

repositories {
    maven("https://repo.kotlin.link")
    //uncomment to access development builds
    //maven("https://maven.pkg.jetbrains.space/spc/p/sci/dev")
    mavenCentral()
}

dependencies {
    implementation("space.kscience:controls-core:0.2.0")
}