summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2023-04-22 13:56:14 +0200
committerThomas White <taw@physics.org>2023-04-22 16:06:20 +0200
commit24ddf3f4bd754478a7880586b93dc1342a34001b (patch)
tree5d034f020219bf79e13d4d0ef4d87e9617a56b81 /README.md
parent09c71fef227fcd1d6a8b4142ceaa0cbe66f1aab7 (diff)
make-osc-address: Take URL instead of port number
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 80869b0..c77279d 100644
--- a/README.md
+++ b/README.md
@@ -44,7 +44,7 @@ Or, to send messages (with parameters):
```
(use-modules (open-sound-control client))
-(define osc-send-addr (make-osc-address "7771"))
+(define osc-send-addr (make-osc-address "osc.udp://localhost:7771"))
(osc-send osc-send-addr "/their/osc/method" 1 2 4)
(osc-send osc-send-addr "/their/other/method" "string-arg")