mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
Removed "use strict" as it breaks this node. I'm investigating why.
Also updated the package.json to reflect autors and bumped version number
This commit is contained in:
parent
c45c625872
commit
1ef562edbd
@ -15,7 +15,7 @@
|
|||||||
**/
|
**/
|
||||||
|
|
||||||
module.exports = function(RED) {
|
module.exports = function(RED) {
|
||||||
"use strict";
|
//"use strict";
|
||||||
var HID = require('node-hid');
|
var HID = require('node-hid');
|
||||||
var device;
|
var device;
|
||||||
var node;
|
var node;
|
||||||
|
@ -1,10 +1,11 @@
|
|||||||
{
|
{
|
||||||
"name" : "node-red-node-digirgb",
|
"name" : "node-red-node-digirgb",
|
||||||
"version" : "0.0.1",
|
"version" : "0.0.2",
|
||||||
"description" : "A Node-RED node to control a Digispark RGB LED",
|
"description" : "A Node-RED node to control a Digispark RGB LED",
|
||||||
"dependencies" : {
|
"dependencies" : {
|
||||||
"node-hid" : "0.3.1"
|
"node-hid" : "0.3.1"
|
||||||
},
|
},
|
||||||
|
"homepage": "http://www.hardill.me.uk/wordpress/2013/02/06/budget-blink1/",
|
||||||
"repository" : {
|
"repository" : {
|
||||||
"type":"git",
|
"type":"git",
|
||||||
"url":"https://github.com/node-red/node-red-nodes/tree/master/hardware/digiRGB"
|
"url":"https://github.com/node-red/node-red-nodes/tree/master/hardware/digiRGB"
|
||||||
@ -16,9 +17,16 @@
|
|||||||
"digiRGB": "78-digiRGB.js"
|
"digiRGB": "78-digiRGB.js"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"author": {
|
"contributors": [
|
||||||
"name": "Dave Conway-Jones",
|
{
|
||||||
"email": "ceejay@vnet.ibm.com",
|
"name": "Dave Conway-Jones",
|
||||||
"url": "http://nodered.org"
|
"email": "ceejay@vnet.ibm.com",
|
||||||
}
|
"url": "http://nodered.org"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Ben Hardill",
|
||||||
|
"email": "hardillb@gmail.com",
|
||||||
|
"url": "http://www.hardill.me.uk/wordpress/"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user