Last active
December 12, 2015 06:28
-
-
Save trentbrooks/4728862 to your computer and use it in GitHub Desktop.
Basic Pure Data patch to view OSC messages on any given port, can also send a custom message to any ip.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#N canvas 20 473 496 184 10; | |
#X obj 239 110 sendOSC; | |
#X obj 25 89 print osc; | |
#X text 20 11 Receiving values on port XXXX:; | |
#X text 237 11 Send values to ip address and port:; | |
#X msg 276 76 send /someaddress/69; | |
#X obj 25 56 dumpOSC 4444; | |
#X msg 239 44 connect 127.0.0.1 4443; | |
#X connect 4 0 0 0; | |
#X connect 5 0 1 0; | |
#X connect 6 0 0 0; | |
#X coords 0 0 1 1 85 60 0; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment