How to install Node-RED on Raspberry Pi to Control an LED

Published  June 6, 2019   0
How to install Node-RED on Raspberry Pi to Control an LED

Ever wondered if there was a way to make simple prototypes of IoT solutions without having to spend days writing codes or to build practical advanced projects without coding. Yes, this is possible with the Node-Red Platform. Developed by IBM, Node-RED is an open-source programming tool for wiring together hardware devices, APIs and online services in new and interesting way. It provides a browser-based editor that makes it easy to wire together ‘flows’ using the wide range of nodes in the palette that can be deployed to its runtime in a single click.

 

Node-RED is a powerful tool for building Internet of Things (IoT) applications with the goal of simplifying the programming component.

It uses visual programming that allows you to connect code blocks, known as nodes, together to perform a task. For today’s tutorial, we will examine how you can deploy simple projects on the raspberry pi using Node-RED. The raspberry pi node-red tutorial will cover;

  • Installing Node-RED on the Raspberry Pi.
  • Introduction to the Node-RED user interface
  • How to set up Node-RED flows
  • How to control Raspberry Pi GPIO pins with Node-RED
  • How to use Node-RED inputs, outputs and if-else like decision making using switches

 

Pre-requisites

This tutorial will be based on the Raspbian stretch OS and I will assume you are familiar with setting up the Raspberry Pi with it, and you know how to SSH into the Pi using a terminal software like putty. If you have issues with any of this, there are tons of Raspberry Pi Tutorials on this website that can help.

To easily complete the tutorial, I will advise you make use of a monitor connected to the raspberry pi or you use the VNC Viewer software. If you do not have a Monitor and starting fresh with Pi you can read this Headless Raspberry Pi set-up to proceed with this tutorial.  While Node-Red runs from a web browser and can be accessed on your PC to which the Pi is connected via the Pi’s IP address, I believe the VNC/monitor experience will give you a better hang of things.

 

As a demo to show how Node-Red works, we will use Node-RED to program the Raspberry Pi to control an LED connected to its GPIO and later modify the program to allow the LED to be controlled from a tactile pushbutton connected to the Pi's GPIO.

 

Required Components

The following components are required to build this project;

  1. Raspberry Pi 3 with SD card preloaded with Raspbian Stretch  Preloaded
  2. 100 ohms resistor (1)
  3. LED (1)
  4. Breadboard (1)
  5. Male-to-female jumper wires
  6. Tactile push button (1)

 

Installing Node-RED on Raspberry Pi

While Node-Red comes preinstalled on the Raspbian Stretch OS, we need to upgrade it before we are able to enjoy some of its latest features. Upgrading the Node-Red will

  1. Upgrade the existing user to LTS 8.x or 10.x Node.js and latest Node-RED
  2. Migrate any existing globally installed nodes into the users ~/.node-red space so they can be managed via the palette manager, it DOES NOT update any user installed existing nodes. This must be done manually by the user (see below).
  3. Optionally (re)install the extra nodes that are pre-installed on a full Raspbian Pi image.
     

However, the process of upgrading the Node-Red is similar to installing a new one so for the sake of this tutorial we will just treat it like a new installation so people using other OS versions can follow.

Follow the steps below to Install/Upgrade Node-RED on your Raspberry Pi.

 

We start by upgrading and updating the pi, to ensure everything on it is up to date and avoid compatibility issues. Do this by opening a terminal or via ssh, and run;

Sudo apt-get update

followed by

sudo apt-get upgrade

 

With this done, run the bash script below on the terminal;

bash <(curl -sL https://raw.githubusercontent.com/node-red/raspbian-deb-package/master/resources/update-nodejs-and-NodeRed)

 

The bash script will do the following things

  1. Ask if you want to (re)install the extra Pi nodes
  2. Save a list of any globally installed node-red- nodes found in /usr/lib/node_modules
  3. apt-get remove existing Node-Red
  4. remove any node-red binaries from /usr/bin and /usr/local/bin
  5. Remove any node-red modules from /usr/lib/node_modules and /usr/local/lib/node_modules
  6. Detect if Node.js was installed from Node.js package or Debian
  7. If not v8 or newer - remove as appropriate and install latest v8 or v10 LTS (not using apt).
  8. Clean out npm cache and .node-gyp cache to remove any previous versions of the code
  9. Install Node-RED latest version
  10. Re-install under the user account any nodes that had previously been installed globally
  11. Re-install the extra Pi nodes if required
  12. Rebuild all nodes - to recompile any binaries to match latest Node.js version
  13. Add node-red-start, node-red-stop and node-red-log commands to /usr/bin
  14. Add menu shortcut and icon
  15. Add system script and set user
  16. If on a Pi add a CPU temperature -> IoT example

 

The bash script above runs many commands as sudo and does delete existing Node.js and the core Node-RED directories. You can check the content of the script on this GitHub page before running it to be sure it won’t affect any project you already have on the Pi.

With the installation is complete you should now see the Node-Red icon under the programming apps list of your menu.

 

Launching Node-RED in Raspberry Pi

Node-Red can be launched via the menu section from your raspberry pi’s desktop, via the terminal, or over ssh.

To launch on the raspberry pi’s desktop, Click on the Raspberry icon, hover your mouse on Programming click on Node-RED (Menu>Programming>NodeRed) to launch it.

Launching Node-RED in Raspberry Pi

 

It can also be launched from ssh or terminal by running;

node-red-start

 

Launch Node RED in Raspberry Pi via ssh

 

You should see a window like the one below showing node red launch on the desktop.

Once you see this, go to menu->internet and launch the chromium web browser. While your Raspberry pi does not need the internet to run Node-Red, it uses a browser as its interface.

With chromium launched enter localhost:1880 in the address bar followed by the enter key. 1880 is the port on the raspberry pi on which Node-Red is preset to communicate. This should display the Node-Red interface as shown in the image below.

Node Red Interface on Pi

 

Understanding the Node-RED interface

The Node-Red interface comprises of the flow panel, the nodes palette, the debug console and the info console as highlighted in the image above.
 

The flow panel is where the nodes are joined together to create a program which in Node-Red is called flow, while the Node palette comprises of objects which are representative of hardware, protocols and software features associated with devices. It includes protocols like MQTT for IoT, and GPIO output and input modes for boards like the raspberry pi. The info console provides information on highlighted/selected objects while the debug console works just like the Arduino Serial monitor and can provide feedback while the flow is running. The deploy button is used to upload the flow to target hardware. Menu button contains different upload types to help you get the best out of your project. With Node-Red up and running, we can now proceed to build the demo project.

 

Schematics

As mentioned during the introduction, our demo project for today will be to control the Raspberry Pi's GPIO using a Node-RED flow. To show the variation in the GPIO’s state, we will be connecting an LED to the GPIO such that when that particular GPIO pin is turned on, the LED comes on and vice versa.

Connect the LED to the Raspberry PI as shown in the schematics below.

Circuit Diagram for Controlling the Pi GPIO using Node RED flow

 

I also build the same on my hardware using a breadboard, LED, resistor and some connecting wires. My hardware set-up looks something like this once the connections are made.

Raspberry Pi Node-RED Hardware Setup to Control LED

 

This project can be easily converted into a Home automation project, just by replacing the LED with a relay and any AC appliance, learn how to do that by going through various Home Automation Projects.

 

Creating a Flow in Node-RED

With the LED connected, we can proceed to develop the flow. Programs in NodeRed are called flows just like the Arduino IDE calls them sketches. Flows are created using a combination of nodes. You can create multiple flows which can all run at the same time, but for this tutorial, we will be creating a single flow to turn the LED on/off.

Creating a Flow in Node-RED

 

To begin, Scroll to the bottom of the Nodes palette, you will see the raspberry pi nodes section towards the end with two nodes labeled rpigpio. These nodes are used for communicating with the raspberry pi’s GPIO. One of the Nodes is for input while the other is for output differentiated by the position of the raspberry pi’s logo. For the input node, the logo comes before the text, while for output node the logo comes after the text as shown in the image below.

 

For this tutorial we will be making use of the output node, drag it into the flow section of the interface. This step is similar to declaring a particular pin of your Arduino as Output using the pinMode() command. Double-click on the Output node and a pop up window will open as shown below to allow you edit the properties of the node.

Choosing GPIO for Flow in Node-RED

 

Under the pin property section, select GPIO17 (pin 11). Then set the type property to “digital Output” and tick the “Initialize pin state?” check box leaving the “initial level of pin” option as low (0). Give the node whatever name you like and click the done button.

The name of the node should automatically change to the one you entered under the properties setting. For example I named it as LED and hence the node name is also changed as LED as shown below.

GPIO for Flow in Node-RED

 

To turn the LED on/off, we need to use an input, something to drive the action. While we could use a push button, I want to use this to introduce the feature in Node-RED that allows the injection of messages into flows.  These feature is called the inject Node. We will be using two inject nodes. One will be to turn the LED on while the other will be to turn it off. 

Go to the node palette and drag the inject node to the flow. It’s the first node in the palette with an arrow, the inject node is highlighted in the image below.

Setup Button for Flow in Node-RED


Double-click on it to edit its properties. Change the data type to string by clicking the dropdown in front of payload, and Enter 1 in the Payload box. The value in the payload box is what will be injected into the flow when the node is pressed. Set the name of the node to “ON” Press the “Done” button to save.

Edit Button for Flow in Node-RED

 

Repeat the above for the second node, setting the payload value to “0” and its name as “off” as shown below.

Edit Second Button for Flow in Node-RED

 

Under the properties function, the repeat dropdown can be used to automate the injection so the buttons are pressed at intervals. This can be used to create the blink effect. Join the nodes together as shown below, by dragging the grey dot on one of the nodes to the other to create the flow.

Flow for Controlling LED using Node-RED

 

With that done, we have now completed our very first Node-Red Flow.

Next step is for us to deploy the flow on the raspberry pi. Click the red deploy button. You should see “successfully deployed” flash at the top of the screen as shown below.

Created a Flow in Node-RED

 

Click the grey button behind the inject nodes to activate each of the nodes.

Flow for LED Controlling using Node Red

 

By clicking on the “on” inject node, you should see successfully injected “on” displayed and the LED come on. The LED should go off when the “off” inject node is clicked.

Led Controls using Node-Red

 

That’s it.  The complete working of this set-up can be found in the video linked at the bottom of this page.

 

Adding a Pushbutton/Switch in Node-RED interface with Raspberry Pi

To explain how to connect/add an input element to your flow, we will be taking the above flow further by adding a pushbutton to replace the inject nodes.

 

Connect the pushbutton to the raspberry pi, such that, one leg of the pushbutton is connected to ground and the other is connected to GPIO pin 4(pin 11) of the raspbery pi, as shown in the schematics below.

Pushbutton Interface in Node-RED with Raspberry Pi

 

With this done, Go back to Node-Red and delete the two inject nodes  we used earlier, by clicking on the nodes and pressing delete on your keyboard or double-clicking the nodes and pressing delete on the pop-up window. With that done, scroll down the node palette to the raspberry pi section and select the input node. It is the one with the raspberry pi icon on the left, before the node’s name.

Creating a Flow in Node RED using Pi

 

Drag the node into the flow and double click on it to edit properties. Set the pin to GPIO 4 (pin 11) and set the dropdown in front of the resistor to pull-up. This will “pull up” GPIO 4 to HIGH.  Click on the done button after setting the properties.

Edit Button for Flow in Node-RED using Pi

 

To allow us make logical decisions when the switch is pressed rather than just shorting GPIO4 to ground, we will be using the switch node.  Search for it in the node palette, under the function section and drag to the flow.

Edit Switch for Flow in Node-RED

 

The switch node allows you make decisions in a way similar to the “if” statements. It can be set up to have different outputs depending on the input value. For this tutorial, we will be configuring it with two output path, such that, when the msg.payload property is equal to 1 (switch is not pressed) it should follow the first path and a second path will be followed if any other input other than 1 is observed at the input(switch is pressed). Paths are added using the “+add” button. Double click on the node and configure as described above. Click done when finished.

Edit Switch Properties for Flow in Node-RED

 

As soon as you hit the done button, you should see the two paths reflect in the outlook of the switch node, as it will now have two junctions at the output.

Switch for Controlling Pi GPIO using Node-RED

 

Next, we need to bring in a “change” node. The change node will be used to set the state of the LED based on the result of the argument node.

Edit Properties for Buttons in flow for Node-RED



We will be using two of the change nodes. The payload of the first one will be set to 0 as shown in the image below and the payload of the second one set to one. Click done after editing properties for both.

Edit Change mode Properties in Flow for Node-RED

 

To better explain, remember we used the pull-up resistor? Thus, when the button has not been pressed, the output at that pin will be HIGH(1), which means if we pass it through the switch node, The LED will be “on”, since this should not be so,  we will use the “change” node to set it as LOW(0).  The second “change” node is used to set the value to one such that when anything other than the HIGH state of GPIO pin 4 is detected, it should turn the LED “on” as this will mean the pushbutton has been pressed. Connect the change nodes and the rest of the nodes together as shown in the image below.

Flow for Controlling LED using Node-Red and Pi

 

With this done, we are now ready to deploy the project.  Go over the connection to ensure everything is as it should be, then click the deploy button. As usual, if successful you should see the deploy successful popup and now be able to control the led using the switch.

While the Node-Red makes it easy and fast to prototype your build without worrying about the code, it may not actually be the best fit, especially for experienced developers who will want flexibility and control over the program. Nevertheless, it’s a great tool that allows you prototype builds in minutes.

Till Next time!

Video

Have any question realated to this Article?

Ask Our Community Members