Skip to content

Commit 9a67173

Browse files
committed
remove extraneous ) in neopixel node
1 parent 84d557d commit 9a67173

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

hardware/neopixel/neopixel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module.exports = function(RED) {
1010

1111
try {
1212
var cpuinfo = fs.readFileSync("/proc/cpuinfo").toString();
13-
if (cpuinfo.indexOf(": BCM") === -1 && cpuinfo.indexOf(": Raspberry Pi") === -1)) {
13+
if (cpuinfo.indexOf(": BCM") === -1 && cpuinfo.indexOf(": Raspberry Pi") === -1) {
1414
RED.log.warn("rpi-neopixels : "+RED._("node-red:rpi-gpio.errors.ignorenode"));
1515
allOK = false;
1616
}

hardware/neopixel/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name" : "node-red-node-pi-neopixel",
3-
"version" : "2.0.2",
3+
"version" : "2.0.3",
44
"description" : "A Node-RED node to output to a neopixel (ws2812) string of LEDS from a Raspberry Pi.",
55
"dependencies" : {
66
},

0 commit comments

Comments
 (0)