Node-RED

From Axel Public Wiki
Revision as of 16:59, 25 June 2018 by Axelpwiki (talk | contribs)
Jump to navigation Jump to search

This wiki document explains how to manually install on a virgin Raspbian image the package that contains the following modules:

GetTagValue.png

SetTagValue.png

These nodes interact with LogicLab and their aim is to, respectively, read/write a value for a requested symbol target.

After the installation, these nodes will appear into the function tab of the palette.

Please be aware that this documentation page is intended for Raspberry PiRaspi.pngonly.

If you downloaded our preconfigured Raspbian image, you don't have to follow this guide since Node-RED is already installed and set up to auto-start on boot.



Requirements

In order to make this package work, you have to install the JavaScript runtime Node.js, the package manager npm and Node-RED.

Note: The package has been developed and tested with v8.11.1 of Node.js and v5.6.0 of npm.


Install Node.js and npm

The package manager npm is provided along with the Node.js installation package.

Open up a terminal and execute the following commands:

sudo apt-get update 
sudo apt-get dist-upgrade
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs

Now you can check that both Node.js and npm have been installed with:

node -v
npm -v

Look here for further details.


Install Node-RED

You can install Node-RED using the following npm command:

 sudo npm install -g --unsafe-perm node-red

Ignore any error regarding the module node-pre-gyp.

Further information can be found here.


Install the package

Download LLSymbols_Node-RED-raspberry.zip from here.

Once you downloaded LLSymbols_Node-RED-raspberry.zip, move it to the following path:

/home/pi/

Now open up a terminal, unzip the file and change the directory path to the folder where Node-RED had been installed. After that you can add the package by using the appropriate npm command.

The following commands summarize these steps:

cd /home/pi
unzip LLSymbols_Node-RED-raspberry.zip -d .
cd /usr/lib/node_modules/node-red
sudo npm install /home/pi/LLSymbols_Node-RED

Now you are ready to start Node-RED.


Start Node-RED manually

node-red start


Configure Node-RED to auto-start on boot

In order to make Node-RED auto-start on boot, please execute the following commands:

sudo wget -O /tmp/download https://gist.github.com/bigmonkeyboy/9962293/download 
sudo unzip /tmp/download -d /etc/init.d
sudo chmod 755 /etc/init.d/nodered
sudo update-rc.d nodered defaults

You can check further information from here.


Enable the projects feature

It is highly recommended to enable the projects feature. In order to do this, you have to edit the settings.js file into your Node-RED installation folder.

If you have followed the steps above, the settings.js file should be located at this path:

 /home/pi/.node-red/settings.js

Now edit it by adding or modifying (if already existing) the following option within the module.exports block:

 editorTheme: {
       projects: {
           enabled: true
       }
 },

Finally, you have to restart Node-RED.


Run the example

Note 1: you have to enable the projects feature in order to make this example work.

Note 2: you have to install the dashboard nodes in order to get this example work. Please check this link.

When you unzipped the LLSymbols_Node-RED-raspberry.zip file, you also got an Example folder; please move it and its content to

/home/pi/.node-red/projects/

and then restart Node-RED. You should be able to see the example flow we thought for this package.


Node-red.png