Mercurial > hg > beaglert
view resources/osc/node_modules/osc-min/examples/oscbundle_heartbeat.js @ 413:d874b5696078 prerelease
renamed setup_board.sh to update_board.sh. Comes with plenty of new functionalities, prompts etc. When called without parameters will only update the relevant files, leaving the projects/ folder alone. When called with --clean will nuke the whole remote Bela folder and restore it.
author | Giulio Moro <giuliomoro@yahoo.it> |
---|---|
date | Thu, 16 Jun 2016 01:31:04 +0100 |
parents | fb9c28a4676b |
children |
line wrap: on
line source
// Generated by CoffeeScript 1.10.0 var dgram, now, osc, outport, sendHeartbeat, udp; osc = require('osc-min'); dgram = require("dgram"); udp = dgram.createSocket("udp4"); if (process.argv[2] != null) { outport = parseInt(process.argv[2]); } else { outport = 41234; } now = function() { return (new Date()).getTime() / 1000; }; sendHeartbeat = function() { var buf; buf = osc.toBuffer({ timetag: now() + 0.05, elements: [ { address: "/p1", args: new Buffer("beat") }, { address: "/p2", args: "string" }, { timetag: now() + 1, elements: [ { address: "/p3", args: 12 } ] } ] }); return udp.send(buf, 0, buf.length, outport, "localhost"); }; setInterval(sendHeartbeat, 2000); console.log("sending heartbeat messages to http://localhost:" + outport);