From feb4f5a705e9e55a2961a9b53e80b9aa4ed52a01 Mon Sep 17 00:00:00 2001 From: fundamental Date: Wed, 25 Jun 2014 11:27:53 -0400 Subject: [PATCH] Update README --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 14650ac..2ec7a94 100644 --- a/README.md +++ b/README.md @@ -67,11 +67,12 @@ In the first one run ```julia using OSC sock2 = UdpSocket() -bind(sock2, ip"127.0.0.1", 7777)#should return true +bind(sock2, ip"127.0.0.1", 7777) msg2 = OscMsg(recv(sock2)) ``` -The first instance will now wait for the second to send an OSC message +The first instance will now wait for the second to send an OSC message. +To send the an OSC message, in the second window type. ```julia using OSC @@ -80,7 +81,6 @@ msg1 = OSC.message("/hello world", "sSif", "strings", "symbols", 234, float32(2.3)) send(sock1, ip"127.0.0.1", 7777, msg1.data) ``` -To receive a message over port 7777 ##TODO