node-red-nodes/hardware/blinkstick
dceejay cba50b74a2 Add neopixel array capability to Blinkstick node 2015-02-07 19:31:37 +00:00
..
.gitignore Improvements to BlinkStick node 2014-11-18 17:16:19 +00:00
76-blinkstick.html Add neopixel array capability to Blinkstick node 2015-02-07 19:31:37 +00:00
76-blinkstick.js Add neopixel array capability to Blinkstick node 2015-02-07 19:31:37 +00:00
LICENSE Start moving nodes for npm install-ability 2014-07-04 14:51:55 +01:00
README.md Improvements to BlinkStick node 2014-11-18 17:16:19 +00:00
package.json Add neopixel array capability to Blinkstick node 2015-02-07 19:31:37 +00:00

README.md

node-red-node-blinkstick

A Node-RED node to control a BlinkStick.

Install

Run the following command in the root directory of your Node-RED install:

npm install node-red-node-blinkstick

Usage

BlinkStick output node. Expects a msg.payload with one of:

  • A hex string "#rrggbb" triple
  • "red,green,blue" three 0-255 values as a string
  • "random" will generate a random color
  • Standard HTML color name
  • object can override any of the parameters

An object payload can override any of the settings on the node. Omitted parameters are left intact. For example:

{ 'color': 'blue' }
{ 'task': 'blink', 'color': 'red' }
{ 'task': 'pulse', 'color': 'gree', 'duration': 500 }
{ 'task': 'morph', 'color': 'orange', 'duration': 500, 'steps': 20 }

For more information see BlinkStick tutorials or the node module documentation.