Add readme to orx-osc
This commit is contained in:
@@ -20,7 +20,8 @@ A growing library of assorted data structures, algorithms and utilities.
|
||||
- [`orx-noise`](orx-noise/README.md), library for random number generation and noise
|
||||
- [`orx-no-clear`](orx-no-clear/README.md), a simple extension that provides drawing without clearing the background
|
||||
- [`orx-obj-loader`](orx-obj-loader/README.md), simple Wavefront .obj mesh loader
|
||||
- [`orx-olive`](orx-olive/README.md), extensions that turns OPENRNDR in to a live coding environment
|
||||
- [`orx-olive`](orx-olive/README.md), extensions that turns OPENRNDR in to a live coding environment
|
||||
- [`orx-osc`](orx-osc/README.md), open sound control interface
|
||||
|
||||
# Developer notes
|
||||
|
||||
|
||||
16
orx-osc/README.md
Normal file
16
orx-osc/README.md
Normal file
@@ -0,0 +1,16 @@
|
||||
# orx-osc
|
||||
|
||||
Orx-osc is a wrapper around javaOSC
|
||||
|
||||
## Usage
|
||||
|
||||
```kotlin
|
||||
// PORT IN and OUT: 57110
|
||||
val osc = OSC()
|
||||
|
||||
osc.listen("/live/track2") {
|
||||
// do something
|
||||
}
|
||||
|
||||
osc.send("/maxmsp/filter", 500, "hz")
|
||||
```
|
||||
Reference in New Issue
Block a user