node-red-nodes/hardware/Pibrella
dceejay bb9d67f1ae Update node-red-nodes - clean up lint issues (mainly unused funcs and vars) 2015-04-16 10:58:34 +01:00
..
38-rpi-pibrella.html New Pibrella node - Can use softpwm on all outputs. 2014-12-26 15:24:21 +00:00
38-rpi-pibrella.js Update node-red-nodes - clean up lint issues (mainly unused funcs and vars) 2015-04-16 10:58:34 +01:00
LICENSE Add Pibrella npm 2014-07-04 16:12:19 +01:00
README.md New Pibrella node - Can use softpwm on all outputs. 2014-12-26 15:24:21 +00:00
nrgpio New Pibrella node - Can use softpwm on all outputs. 2014-12-26 15:24:21 +00:00
nrgpio.py New Pibrella node - Can use softpwm on all outputs. 2014-12-26 15:24:21 +00:00
package.json Update node-red-nodes - clean up lint issues (mainly unused funcs and vars) 2015-04-16 10:58:34 +01:00

README.md

node-red-node-pibrella

A Node-RED node to control a Pibrella add-on board for a Raspberry-Pi.

Install

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

npm install node-red-node-pibrella

Pre-reqs

Requires the RPi.PIO python library version 0.5.8 (or better) in order to work. See the RPi.GPIO site for mode details.

sudo apt-get -y install python-rpi.gpio

Usage

A pair of input and output Node-RED nodes for the Raspberry Pi Pibrella from Pimoroni.

###Output

The output node will set the selected output high (on) or low (off) depending on the value passed in. Expects a msg.payload with either a 0 or 1 (or true or false).

You may also select PWM mode to dim the on board LEDs if you wish. Expects a value from 0 to 100.

The Buzzer expects a number representing the frequency in Hz. 0 is off and 1 is a tone - so you can use 0/1 type inputs as well.

###Input

The input node generates a msg.payload with either a 0 or 1 depending on the state of the input pin.

The msg.topic is set to pibrella/{the pin id} - which will be A, B, C, D or R.