-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnode-red-node-artnet.js
48 lines (42 loc) · 1.6 KB
/
node-red-node-artnet.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
module.exports = function(RED) {
var artnet = require('artnet-node');
function ArtnetNodeOutput(config) {
RED.nodes.createNode(this, config);
this.address = config.address;
this.port = config.port || 6454;
this.rate = config.rate || 40;
this.size = config.size || 512;
this.interval = 1000.0 / config.rate;
this.client = artnet.Client.createClient(this.address, this.port);
this.data = [];
this.set = function(address, value) {
this.data[address] = value;
};
var node = this;
this.on('input', function(msg) {
var payload = msg.payload;
if(Array.isArray(payload.data)) {
payload.offset = payload.offset || 0;
for(var i = payload.offset; i < payload.offset + payload.data.length; i++) {
node.data[i] = payload.data[i];
}
} else if(payload.address) {
node.set(payload.address, payload.value);
} else if(Array.isArray(payload.buckets)) {
for(var i = 0; i < payload.buckets.length; i++) {
node.set(payload.buckets[i].address, payload.buckets[i].value);
}
}
});
this.on('close', function(done) {
if(node.timer) {
clearInterval(node.timer);
node.timer = null;
}
});
this.timer = setInterval(function() {
node.client.send(node.data);
}, this.interval);
}
RED.nodes.registerType("artnet out", ArtnetNodeOutput);
}