An Elixir client and server for the Open Sound Control (OSC) protocol. Designed to work with TouchOSC.
Add to mix.exs
defp deps do
[
{:ex_osc, git: "https://github.com/hubie/ex_osc"}
]
end
Add the following to your Application config.exs
file to customize settings.
config :ex_osc,
port: 8000, # UDP port to listen for OSC messages. Default: 8000
buffer_size: 10
- Support nested #bundle messages in parser and constructor
See the LICENSE file for license rights and limitations (MIT).