mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
fix broken neopixel merge
This commit is contained in:
parent
acc2dc1a14
commit
5358b29255
@ -113,17 +113,9 @@ module.exports = function(RED) {
|
||||
}
|
||||
}
|
||||
|
||||
<<<<<<< Updated upstream
|
||||
node.child = spawn(piCommand, [node.pixels, node.wipe, node.mode, node.brightness, node.gamma]);
|
||||
node.status({fill:"green",shape:"dot",text:"ok"});
|
||||
||||||| merged common ancestors
|
||||
node.child = spawn(piCommand, [node.pixels, node.wipe, node.mode]);
|
||||
node.status({fill:"green",shape:"dot",text:"ok"});
|
||||
=======
|
||||
if (allOK === true) {
|
||||
node.child = spawn(piCommand, [node.pixels, node.wipe, node.mode]);
|
||||
node.child = spawn(piCommand, [node.pixels, node.wipe, node.mode, node.brightness, node.gamma]);
|
||||
node.status({fill:"green",shape:"dot",text:"ok"});
|
||||
>>>>>>> Stashed changes
|
||||
|
||||
node.on("input", inputlistener);
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name" : "node-red-node-pi-neopixel",
|
||||
"version" : "0.0.17",
|
||||
"version" : "0.0.18",
|
||||
"description" : "A Node-RED node to output to a neopixel (ws2812) string of LEDS from a Raspberry Pi.",
|
||||
"dependencies" : {
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user