From ac86de9ba6198c0094db0ced6d1f1d675d577f8a Mon Sep 17 00:00:00 2001 From: Ricardo Matias Date: Thu, 7 Nov 2019 10:22:14 +0100 Subject: [PATCH] Add readme to orx-osc --- README.md | 3 ++- orx-osc/README.md | 16 ++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 orx-osc/README.md diff --git a/README.md b/README.md index 164cce9a..0b2d8a04 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/orx-osc/README.md b/orx-osc/README.md new file mode 100644 index 00000000..1d0d6feb --- /dev/null +++ b/orx-osc/README.md @@ -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") +```