view resources/osc/node_modules/osc-min/examples/printosc.coffee @ 346:c6a15a8dee02 prerelease

Remapped analog output channels to match 01234567 order on cape. Note: this will change the behaviour of all these existing examples using analog out, notably d-box and cape_test.
author andrewm
date Tue, 07 Jun 2016 18:37:11 +0100
parents fb9c28a4676b
children
line wrap: on
line source
osc = require 'osc-min'
udp = require "dgram"

if process.argv[2]?
    inport = parseInt process.argv[2]
else
    inport = 41234

console.log "OSC listener running at http://localhost:" + inport

`//~verbatim:examples[0]~
//### A simple OSC printer`
sock = udp.createSocket "udp4", (msg, rinfo) ->
    try
        console.log osc.fromBuffer msg
    catch error
        console.log "invalid OSC packet"
sock.bind inport