.#1 osc scheme tested transmission to pd patch using rsc code from rohan drape:: 16:59
under PLT scheme/MZscheme:
(and in ~/sw-01/module dir where these modules are - how to sort the path?)
(require "osc.ss") (require "udp.ss")and using code from client.scm
(define client (make-parameter #f))
(define (make-client host port)
(open-udp* host port))
(client (make-client "127.0.0.1" 9999))
;;or just:
(client (open-udp* "127.0.0.1" 9999))
(osc-send (client) '("/test" 100))