summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/README.md b/README.md
index 49e253f..80869b0 100644
--- a/README.md
+++ b/README.md
@@ -43,8 +43,12 @@ Or, to send messages (with parameters):
```
(use-modules (open-sound-control client))
+
(define osc-send-addr (make-osc-address "7771"))
+
(osc-send osc-send-addr "/their/osc/method" 1 2 4)
+(osc-send osc-send-addr "/their/other/method" "string-arg")
+(osc-send osc-send-addr "/yet/another/method" 0.3 "hello")
```