osc
module reference
index
- Create a UDP remote.
- Send events via OSC.
- Synchronize a value via OSC.
details
- Create a UDP remote.
(osc/connect host port)
- Send events via OSC.
(osc/send [socket] path evt)
Sends an OSC message with
evt
as an argument.socket
should be audp/socket
value. This argument can be omitted and the value be passed as a dynamic definition in*sock*
instead.path
is the OSC path to send the message to. It should be a string-value.evt
is the argument to send. It should be an event stream.
- Synchronize a value via OSC.
(osc/sync [socket] path val)
Sends an OSC message with
val
as an argument whenever any of the arguments change.socket
should be audp/socket
value. This argument can be omitted and the value be passed as a dynamic definition in*sock*
instead.path
is the OSC path to send the message to. It should be a string-value.val
is the value to Synchronize. It should be a value stream.