Go to file
fundamental d87f942de2 Update README 2014-06-18 17:18:11 -04:00
src Pretty printing enhancements 2013-10-27 18:49:24 -04:00
test Pretty printing enhancements 2013-10-27 18:49:24 -04:00
.travis.yml Add Normal Package Layout 2013-10-16 18:56:10 -04:00
README.md Update README 2014-06-18 17:18:11 -04:00
REQUIRE Add Normal Package Layout 2013-10-16 18:56:10 -04:00
VERSION Add Normal Package Layout 2013-10-16 18:56:10 -04:00

README.md

OSC.jl

Open Sound Control serialization library for Julia

To send a message over port 7777

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

sock2 = UdpSocket()
bind(sock2, ip"127.0.0.1", 7778)#should return true
msg2 = OscMsg(recv(sock2))

Build Status