i´m able to send data using both [packOSC] and [sendOSC] and retrieve / unpack via [dumpOSC].
any thoughts on how to correctly format TUIO messages and send from pd itself?
the specifications http://www.tuio.org/?tuio11
-
tuio messages?
-
Make your message /tuio/25Dobj set 0.2345
To do this dynamically you can construct the above message using [prepend].... so use [prepend /] to add the / after a symbol.
Then you pack your message and send it through [packOSC] which converts the list to the correct osc format.
The message then gets to the outside world through [udpsend]
osc_send_example.pd
probable_25Dobj.pd
David. -
David,
i´m really out of my depth here so thanks for sharing these patches.
its helpful to see in application. i´m learning as i go.
possibly due to how baffled i still am on how to add:
an initial ALIVE message
and a concluding FSEQ message.
[TuioClient] isn´t receiving the parameters i´m sending even though it is connected.
how do i create a bundle with all these arguments?
for now I´m really just trying to control one TuioCursor with a continually updating x y position. -
heres what i´ve got so far... thanks again.
hyo͞oˈristik.pd
can now continually update parameters
sending and receiving fine with dumpOSC still no luck with TuioClient.
wondering about the order the messages get sent, after having tried a few different ways. -
progress.
tuio messages are now being received by the tuioclient.
the “s” parameter Session ID (temporary object ID) was not registering and it is now.
figuring out how to properly create and control the cursor.
note: tuioclient prints out only after all variables are active.