Add readme to orx-osc

This commit is contained in:
Ricardo Matias
2019-11-07 10:22:14 +01:00
parent 41aa0ef3f1
commit ac86de9ba6
2 changed files with 18 additions and 1 deletions

16
orx-osc/README.md Normal file
View 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")
```