From d87f942de21b5b429bd91615ad59cfa7dbbe695c Mon Sep 17 00:00:00 2001 From: fundamental Date: Wed, 18 Jun 2014 17:18:11 -0400 Subject: [PATCH] Update README --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index d0a92e7..ed66fa5 100644 --- a/README.md +++ b/README.md @@ -3,4 +3,22 @@ OSC.jl Open Sound Control serialization library for Julia + +To send a message over port 7777 + +````julia +require("OSC") +using OSC +sock1 = UdpSocket() +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 7778 + +````julia +sock2 = UdpSocket() +bind(sock2, ip"127.0.0.1", 7778)#should return true +msg2 = OscMsg(recv(sock2)) +```` [![Build Status](https://travis-ci.org/fundamental/OSC.jl.png)](https://travis-ci.org/fundamental/OSC.jl)