Last edited 5 months ago

How to install Node-RED: Difference between revisions

Registered User
mNo edit summary
Registered User
mNo edit summary
Tag: 2017 source edit
 
(3 intermediate revisions by the same user not shown)
Line 3: Line 3:
|MPUs checklist=STM32MP13x, STM32MP15x
|MPUs checklist=STM32MP13x, STM32MP15x
}}</noinclude>
}}</noinclude>
{{FlowCompatibility/Generic|'''The Node-RED, subject of this article, is not part of STM32MPU ecosystem releases,  for which ST provides some support. <br>This article only provides, as example, some helper guidelines (tips): you may need to make some adaptations depending on your system setup.'''}}
Node-RED<sup>®</sup> can be easily installed using the [[Package repository for OpenSTLinux distribution | package repository for OpenSTLinux distribution]] service.
Node-RED<sup>®</sup> can be easily installed using the [[Package repository for OpenSTLinux distribution | package repository for OpenSTLinux distribution]] service.
==Node-RED direct installation==
==Node-RED direct installation==
Execute the following commands to install Node-RED:
Execute the following commands to install Node-RED:
  {{Board$}} apt-get update
  {{Board$}}apt-get update
  {{Board$}} apt-get install node-red
  {{Board$}}apt-get install node-red


Node-RED is automatically started and can be accessed remotely using your web browser:
Node-RED is automatically started and can be accessed remotely using your web browser:
Line 15: Line 18:
==node-red-dashboard module==
==node-red-dashboard module==
This module provides a set of nodes in Node-RED to quickly create a live data dashboard <ref name=node_red_dashboard_module_url>[https://flows.nodered.org/node/node-red-dashboard node-red-dashboard module]</ref>.
This module provides a set of nodes in Node-RED to quickly create a live data dashboard <ref name=node_red_dashboard_module_url>[https://flows.nodered.org/node/node-red-dashboard node-red-dashboard module]</ref>.
  {{Board$}} apt-get install node-red-dashboard
  {{Board$}}apt-get install node-red-dashboard


To access the Node-RED dashboard using your web browser:
To access the Node-RED dashboard using your web browser:
Line 23: Line 26:
==node-red-contrib-image-tools module==
==node-red-contrib-image-tools module==
A Node-RED node to perform functions on images and decode barcodes <ref name=node_red_image_tools_module_url>[https://flows.nodered.org/node/node-red-contrib-image-tools node-red-contrib-image-tools module]</ref>.
A Node-RED node to perform functions on images and decode barcodes <ref name=node_red_image_tools_module_url>[https://flows.nodered.org/node/node-red-contrib-image-tools node-red-contrib-image-tools module]</ref>.
  {{Board$}} apt-get install node-red-contrib-image-tools
  {{Board$}}apt-get install node-red-contrib-image-tools


==References==
==References==

Latest revision as of 16:56, 15 November 2024

Applicable for STM32MP15x lines


Warning DB.png Important
The Node-RED, subject of this article, is not part of STM32MPU ecosystem releases, for which ST provides some support.
This article only provides, as example, some helper guidelines (tips): you may need to make some adaptations depending on your system setup.

Node-RED® can be easily installed using the package repository for OpenSTLinux distribution service.

1. Node-RED direct installation

Execute the following commands to install Node-RED:

Board $>apt-get update
Board $>apt-get install node-red

Node-RED is automatically started and can be accessed remotely using your web browser:

http://<board IP @>:1880
Warning white.png Warning
Target and your host computer must be connected to the same network.

2. node-red-dashboard module

This module provides a set of nodes in Node-RED to quickly create a live data dashboard [1].

Board $>apt-get install node-red-dashboard

To access the Node-RED dashboard using your web browser:

http://<board IP @>:1880/ui
Warning white.png Warning
Target and your host computer must be connected to the same network.

3. node-red-contrib-image-tools module

A Node-RED node to perform functions on images and decode barcodes [2].

Board $>apt-get install node-red-contrib-image-tools

4. References