2013-09-27 15:37:44 +02:00
|
|
|
|
2014-06-29 00:35:21 +02:00
|
|
|
module.exports = function(RED) {
|
2015-03-26 19:55:03 +01:00
|
|
|
"use strict";
|
2014-06-29 00:35:21 +02:00
|
|
|
var HID = require('node-hid');
|
|
|
|
var device;
|
|
|
|
var node;
|
2013-09-27 15:37:44 +02:00
|
|
|
|
2014-06-29 00:35:21 +02:00
|
|
|
function DigiRGBNode(n) {
|
|
|
|
RED.nodes.createNode(this,n);
|
|
|
|
node=this;
|
2013-10-26 23:19:43 +02:00
|
|
|
|
2014-06-29 00:35:21 +02:00
|
|
|
var devices = HID.devices(0x16c0,0x05df);
|
|
|
|
for (var i=0; i< devices.length; i++) {
|
|
|
|
if (devices[i].product == 'DigiUSB') {
|
2016-04-09 19:00:14 +02:00
|
|
|
node.log("found: " + devices[i].path);
|
2014-06-29 00:35:21 +02:00
|
|
|
try {
|
|
|
|
device = new HID.HID(devices[i].path);
|
|
|
|
break;
|
2017-01-29 18:45:44 +01:00
|
|
|
}
|
|
|
|
catch (e) {
|
2014-06-29 00:35:21 +02:00
|
|
|
node.log(e)
|
|
|
|
}
|
2013-11-10 18:01:19 +01:00
|
|
|
}
|
2013-09-27 15:37:44 +02:00
|
|
|
}
|
2013-10-26 23:19:43 +02:00
|
|
|
|
2014-06-29 00:35:21 +02:00
|
|
|
var p1 = /^\#[A-Fa-f0-9]{6}$/
|
|
|
|
var p2 = /[0-9]+,[0-9]+,[0-9]+/
|
2013-10-26 23:19:43 +02:00
|
|
|
|
2014-06-29 00:35:21 +02:00
|
|
|
if (device) {
|
2014-09-08 22:42:16 +02:00
|
|
|
this.on("input", function(msg) {
|
2014-06-29 00:35:21 +02:00
|
|
|
if (p1.test(msg.payload)) {
|
|
|
|
var r = parseInt(msg.payload.slice(1,3),16);
|
|
|
|
var g = parseInt(msg.payload.slice(3,5),16);
|
|
|
|
var b = parseInt(msg.payload.slice(5),16);
|
|
|
|
device.sendFeatureReport([115,r,g,b]);
|
2017-01-29 18:45:44 +01:00
|
|
|
}
|
|
|
|
else if (p2.test(msg.payload)) {
|
2014-06-29 00:35:21 +02:00
|
|
|
var args = msg.payload.split(',');
|
|
|
|
if (args.length == 3) {
|
|
|
|
device.sendFeatureReport([115,parseInt(args[0]),parseInt(args[1]),parseInt(args[2])]);
|
|
|
|
}
|
2017-01-29 18:45:44 +01:00
|
|
|
}
|
|
|
|
else {
|
2014-06-29 00:35:21 +02:00
|
|
|
node.warn("incompatable input - " + msg.payload);
|
2013-11-10 18:01:19 +01:00
|
|
|
}
|
2014-09-08 22:42:16 +02:00
|
|
|
});
|
2017-01-29 18:45:44 +01:00
|
|
|
}
|
|
|
|
else {
|
2014-06-29 00:35:21 +02:00
|
|
|
node.warn("no digispark RGB found");
|
2013-09-27 15:37:44 +02:00
|
|
|
}
|
2013-11-10 18:01:19 +01:00
|
|
|
|
2014-06-29 00:35:21 +02:00
|
|
|
this.on('close', function() {
|
|
|
|
if (device) { device.close(); }
|
|
|
|
});
|
|
|
|
}
|
|
|
|
RED.nodes.registerType("digiRGB",DigiRGBNode);
|
2013-09-27 15:37:44 +02:00
|
|
|
}
|