update neopixel info

This commit is contained in:
Dave Conway-Jones 2020-12-12 17:18:18 +00:00
parent 8130f8c007
commit 0ac07a1c6f
No known key found for this signature in database
GPG Key ID: 88BA2B8A411BE9FF
3 changed files with 8 additions and 4 deletions

View File

@ -3,7 +3,7 @@
"version" : "0.3.1",
"description" : "A Node-RED node to talk to an Arduino running firmata",
"dependencies" : {
"firmata" : "^2.0.0"
"firmata" : "^2.3.0"
},
"repository" : {
"type":"git",

View File

@ -53,6 +53,8 @@
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-name">
</div>
<div class="form-tips"><b>Note</b>: pins 12 and 32 are on channel 0, and 33 and 35 are on channel 1.
You can only use one pin from each channel.</div>
</script>
<script type="text/html" data-help-name="rpi-neopixels">
@ -72,8 +74,10 @@
with a CSV string <i>x,y,r,g,b</i>
<p>By default, gamma correction is enabled but it can disabled which can be useful for working with low brightness levels</p>
<p><code>msg.brightness</code> can be used to dynamically set brightness level</p>
<p>The pixels data line should be connected to Pi physical pin 12 - GPIO 18. <i>Note:</i>
this may conflict with audio playback.</p>
<p>The pixels data line should be connected to Pi physical pin 12, 32, 33 or 35. <b>Note:</b>
pins 12 and 32 are on the same channel, as are 33 and 35. If you want connect two neopixels then use pins
from different channels.</p>
<p>Note: this node may also conflict with audio playback.</p>
<p align="right"><a href="http://flows.nodered.org/node/node-red-node-pi-neopixel#usage">More info&nbsp;&nbsp;</a></p>
</script>

View File

@ -1,6 +1,6 @@
{
"name" : "node-red-node-pi-neopixel",
"version" : "0.1.0",
"version" : "0.1.1",
"description" : "A Node-RED node to output to a neopixel (ws2812) string of LEDS from a Raspberry Pi.",
"dependencies" : {
},