File tree Expand file tree Collapse file tree 29 files changed +130
-62
lines changed
controls-visualisation-compose Expand file tree Collapse file tree 29 files changed +130
-62
lines changed Original file line number Diff line number Diff line change @@ -147,6 +147,15 @@ Automatically checks consistency.
147147>
148148> ** Maturity** : EXPERIMENTAL
149149
150+ ### [ simulation-kt] ( simulation-kt )
151+ > A framework for combination of asynchronous simulations.
152+ >
153+ > ** Maturity** : PROTOTYPE
154+ >
155+ > ** Features:**
156+ > - [ timeline] ( simulation-kt/# ) : Timeline is an ordered discrete history containing TimeLineEvent
157+
158+
150159### [ controls-storage/controls-xodus] ( controls-storage/controls-xodus )
151160> An implementation of controls-storage on top of JetBrains Xodus.
152161>
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ A low-code constructor for composite devices simulation
66
77## Artifact:
88
9- The Maven coordinates of this project are ` space.kscience:controls-constructor:0.4.0-dev-4 ` .
9+ The Maven coordinates of this project are ` space.kscience:controls-constructor:0.4.0-dev-7 ` .
1010
1111** Gradle Kotlin DSL:**
1212``` kotlin
@@ -16,6 +16,6 @@ repositories {
1616}
1717
1818dependencies {
19- implementation(" space.kscience:controls-constructor:0.4.0-dev-4 " )
19+ implementation(" space.kscience:controls-constructor:0.4.0-dev-7 " )
2020}
2121```
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ Core interfaces for building a device server
1616
1717## Artifact:
1818
19- The Maven coordinates of this project are ` space.kscience:controls-core:0.4.0-dev-4 ` .
19+ The Maven coordinates of this project are ` space.kscience:controls-core:0.4.0-dev-7 ` .
2020
2121** Gradle Kotlin DSL:**
2222``` kotlin
@@ -26,6 +26,6 @@ repositories {
2626}
2727
2828dependencies {
29- implementation(" space.kscience:controls-core:0.4.0-dev-4 " )
29+ implementation(" space.kscience:controls-core:0.4.0-dev-7 " )
3030}
3131```
Original file line number Diff line number Diff line change 66
77## Artifact:
88
9- The Maven coordinates of this project are ` space.kscience:controls-jupyter:0.4.0-dev-4 ` .
9+ The Maven coordinates of this project are ` space.kscience:controls-jupyter:0.4.0-dev-7 ` .
1010
1111** Gradle Kotlin DSL:**
1212``` kotlin
@@ -16,6 +16,6 @@ repositories {
1616}
1717
1818dependencies {
19- implementation(" space.kscience:controls-jupyter:0.4.0-dev-4 " )
19+ implementation(" space.kscience:controls-jupyter:0.4.0-dev-7 " )
2020}
2121```
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Magix service for binding controls devices (both as RPC client and server)
1212
1313## Artifact:
1414
15- The Maven coordinates of this project are ` space.kscience:controls-magix:0.4.0-dev-4 ` .
15+ The Maven coordinates of this project are ` space.kscience:controls-magix:0.4.0-dev-7 ` .
1616
1717** Gradle Kotlin DSL:**
1818``` kotlin
@@ -22,6 +22,6 @@ repositories {
2222}
2323
2424dependencies {
25- implementation(" space.kscience:controls-magix:0.4.0-dev-4 " )
25+ implementation(" space.kscience:controls-magix:0.4.0-dev-7 " )
2626}
2727```
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Automatically checks consistency.
1414
1515## Artifact:
1616
17- The Maven coordinates of this project are ` space.kscience:controls-modbus:0.4.0-dev-4 ` .
17+ The Maven coordinates of this project are ` space.kscience:controls-modbus:0.4.0-dev-7 ` .
1818
1919** Gradle Kotlin DSL:**
2020``` kotlin
@@ -24,6 +24,6 @@ repositories {
2424}
2525
2626dependencies {
27- implementation(" space.kscience:controls-modbus:0.4.0-dev-4 " )
27+ implementation(" space.kscience:controls-modbus:0.4.0-dev-7 " )
2828}
2929```
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ A client and server connectors for OPC-UA via Eclipse Milo
1212
1313## Artifact:
1414
15- The Maven coordinates of this project are ` space.kscience:controls-opcua:0.4.0-dev-4 ` .
15+ The Maven coordinates of this project are ` space.kscience:controls-opcua:0.4.0-dev-7 ` .
1616
1717** Gradle Kotlin DSL:**
1818``` kotlin
@@ -22,6 +22,6 @@ repositories {
2222}
2323
2424dependencies {
25- implementation(" space.kscience:controls-opcua:0.4.0-dev-4 " )
25+ implementation(" space.kscience:controls-opcua:0.4.0-dev-7 " )
2626}
2727```
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ Utils to work with controls-kt on Raspberry pi
66
77## Artifact:
88
9- The Maven coordinates of this project are ` space.kscience:controls-pi:0.4.0-dev-4 ` .
9+ The Maven coordinates of this project are ` space.kscience:controls-pi:0.4.0-dev-7 ` .
1010
1111** Gradle Kotlin DSL:**
1212``` kotlin
@@ -16,6 +16,6 @@ repositories {
1616}
1717
1818dependencies {
19- implementation(" space.kscience:controls-pi:0.4.0-dev-4 " )
19+ implementation(" space.kscience:controls-pi:0.4.0-dev-7 " )
2020}
2121```
Original file line number Diff line number Diff line change 1+ # Module controls-plc4x
2+
3+ A plugin for Controls-kt device server on top of plc4x library
4+
5+ ## Usage
6+
7+ ## Artifact:
8+
9+ The Maven coordinates of this project are ` space.kscience:controls-plc4x:0.4.0-dev-7 ` .
10+
11+ ** Gradle Kotlin DSL:**
12+ ``` kotlin
13+ repositories {
14+ maven(" https://repo.kotlin.link" )
15+ mavenCentral()
16+ }
17+
18+ dependencies {
19+ implementation(" space.kscience:controls-plc4x:0.4.0-dev-7" )
20+ }
21+ ```
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ Implementation of byte ports on top os ktor-io asynchronous API
66
77## Artifact:
88
9- The Maven coordinates of this project are ` space.kscience:controls-ports-ktor:0.4.0-dev-4 ` .
9+ The Maven coordinates of this project are ` space.kscience:controls-ports-ktor:0.4.0-dev-7 ` .
1010
1111** Gradle Kotlin DSL:**
1212``` kotlin
@@ -16,6 +16,6 @@ repositories {
1616}
1717
1818dependencies {
19- implementation(" space.kscience:controls-ports-ktor:0.4.0-dev-4 " )
19+ implementation(" space.kscience:controls-ports-ktor:0.4.0-dev-7 " )
2020}
2121```
You can’t perform that action at this time.
0 commit comments