2016-01-11 22:22:30 +01:00
|
|
|
|
node-red-node-pi-neopixel
|
|
|
|
|
=========================
|
|
|
|
|
|
|
|
|
|
A <a href="http://nodered.org" target="_new">Node-RED</a> node to drive a strip
|
2016-01-12 23:53:43 +01:00
|
|
|
|
of Neopixel or WS2812 LEDs from a Raspberry Pi.
|
2016-01-11 22:22:30 +01:00
|
|
|
|
|
|
|
|
|
Pre-requisites
|
|
|
|
|
--------------
|
|
|
|
|
|
2016-01-12 23:53:43 +01:00
|
|
|
|
The Neopixel python driver need to be pre-installed... The easiest way to get
|
|
|
|
|
the driver installed is to use the Unicorn HAT drivers install script... see the
|
|
|
|
|
<a href="http://learn.pimoroni.com/tutorial/unicorn-hat/getting-started-with-unicorn-hat" target="_new">
|
|
|
|
|
Pimoroni Getting Started with Unicorn HAT</a> page.
|
2016-01-11 22:22:30 +01:00
|
|
|
|
|
|
|
|
|
curl -sS get.pimoroni.com/unicornhat | bash
|
|
|
|
|
|
|
|
|
|
Install
|
|
|
|
|
-------
|
|
|
|
|
|
2016-03-02 14:25:52 +01:00
|
|
|
|
Run the following command in your Node-RED user directory - typically `~/.node-red`
|
2016-01-11 22:22:30 +01:00
|
|
|
|
|
|
|
|
|
npm install node-red-node-pi-neopixel
|
|
|
|
|
|
2016-01-12 23:53:43 +01:00
|
|
|
|
The data pin of the pixels should be connected to physical pin 12 - GPIO 18 of the Pi.
|
|
|
|
|
*Note:* this may conflict with audio playback.
|
|
|
|
|
|
2016-01-11 22:22:30 +01:00
|
|
|
|
Usage
|
|
|
|
|
-----
|
|
|
|
|
|
2016-03-02 14:25:52 +01:00
|
|
|
|
To set the background just set `msg.payload` to an `html_colour` name.
|
2016-01-18 14:06:38 +01:00
|
|
|
|
<a href="http://html-color-codes.info/color-names/" target="_top">Here
|
|
|
|
|
is a list</a> of html_colour names.
|
2016-01-11 22:22:30 +01:00
|
|
|
|
|
2016-01-18 14:06:38 +01:00
|
|
|
|
It also accepts a string triple `rrr,ggg,bbb` or `#rrggbb`
|
|
|
|
|
|
|
|
|
|
#### Bar Chart
|
|
|
|
|
|
2016-03-02 14:25:52 +01:00
|
|
|
|
Defaults style mode using configured foreground and background colours. The
|
|
|
|
|
foreground colour is used to indicate the number of pixels or length required.
|
2016-01-18 14:06:38 +01:00
|
|
|
|
|
2016-03-02 14:25:52 +01:00
|
|
|
|
It accepts a number in `msg.payload` that can be either the number of pixels,
|
2016-01-12 23:53:43 +01:00
|
|
|
|
or a percentage of the total length.
|
2016-01-11 22:22:30 +01:00
|
|
|
|
|
2016-03-02 14:25:52 +01:00
|
|
|
|
If you want to change the foreground colour, you can set `msg.payload` to a
|
|
|
|
|
comma separated string of `html_colour,length` or `length,html_colour`. The
|
|
|
|
|
foreground will then remain that colour until changed again.
|
2016-01-11 22:22:30 +01:00
|
|
|
|
|
2016-01-18 14:06:38 +01:00
|
|
|
|
#### Needle
|
|
|
|
|
|
|
|
|
|
It can also display a needle (single pixel) type gauge.
|
|
|
|
|
The rest of the pixels are set to the background colour on one side, and the foreground colour on the other side of the indicated pixel.
|
|
|
|
|
|
2016-03-02 14:25:52 +01:00
|
|
|
|
If you want to change the needle colour, you can set `msg.payload` to a
|
2016-01-18 14:06:38 +01:00
|
|
|
|
comma separated string of `html_colour,length` or `length,html_colour`.
|
|
|
|
|
|
|
|
|
|
#### Shift left and Shift right
|
2016-01-11 22:22:30 +01:00
|
|
|
|
|
2016-01-12 23:53:43 +01:00
|
|
|
|
You can also select shift modes where a single colour pixel is added to either
|
2016-03-02 14:25:52 +01:00
|
|
|
|
the start or the end of the strip, shifting all the others along by one. In this
|
|
|
|
|
mode the `msg.payload` can be specified as either an html colour name, an r,g,b triple or #rrggbb.
|
2016-01-18 14:06:38 +01:00
|
|
|
|
|
|
|
|
|
#### Low level "API"
|
2016-01-12 23:53:43 +01:00
|
|
|
|
|
2016-03-02 14:25:52 +01:00
|
|
|
|
The `nth` pixel of the string can be set by `msg.payload` with a CSV string `n,r,g,b` ,
|
2016-01-12 23:53:43 +01:00
|
|
|
|
where r, g and b are 0-255.
|
2016-01-11 22:22:30 +01:00
|
|
|
|
|
2016-03-02 14:25:52 +01:00
|
|
|
|
A range of pixels from position `x` to `y` can be set by `msg.payload`
|
2016-01-11 22:22:30 +01:00
|
|
|
|
with a CSV string `x,y,r,g,b`
|