We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84d557d commit 9a67173Copy full SHA for 9a67173
hardware/neopixel/neopixel.js
@@ -10,7 +10,7 @@ module.exports = function(RED) {
10
11
try {
12
var cpuinfo = fs.readFileSync("/proc/cpuinfo").toString();
13
- if (cpuinfo.indexOf(": BCM") === -1 && cpuinfo.indexOf(": Raspberry Pi") === -1)) {
+ if (cpuinfo.indexOf(": BCM") === -1 && cpuinfo.indexOf(": Raspberry Pi") === -1) {
14
RED.log.warn("rpi-neopixels : "+RED._("node-red:rpi-gpio.errors.ignorenode"));
15
allOK = false;
16
}
hardware/neopixel/package.json
@@ -1,6 +1,6 @@
1
{
2
"name" : "node-red-node-pi-neopixel",
3
- "version" : "2.0.2",
+ "version" : "2.0.3",
4
"description" : "A Node-RED node to output to a neopixel (ws2812) string of LEDS from a Raspberry Pi.",
5
"dependencies" : {
6
},
0 commit comments