From 26d18af15f02354850a5e4b1ba0cca51d3689ab0 Mon Sep 17 00:00:00 2001 From: Abe Pazos Date: Thu, 9 Jun 2022 11:17:43 +0000 Subject: [PATCH] Fix orx-osc readme example (#239) --- orx-jvm/orx-osc/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/orx-jvm/orx-osc/README.md b/orx-jvm/orx-osc/README.md index 1978297b..c066866d 100644 --- a/orx-jvm/orx-osc/README.md +++ b/orx-jvm/orx-osc/README.md @@ -16,9 +16,11 @@ Orx-osc is a wrapper around javaOSC // PORT IN and OUT: 57110 val osc = OSC() -osc.listen("/live/track2") { +osc.listen("/live/track2") { addr, msg -> // do something } osc.send("/maxmsp/filter", 500, "hz") ``` + +For more examples please visit the [guide](https://guide.openrndr.org/OPENRNDRExtras/osc.html).