Skip to main content

Common Nodes

On Start Node

The on start node is an event node that triggers event to the next nodes only once at the start/reset of application device.

Example

node example


Here, on start/reset of the application device, the write node sets pin number 2 voltage level high.


Delay Node

node example


The delay node makes the next nodes wait for a certain amount of time before it executes.

Properties

  • Name (string) - node name.
  • Delay (number) - time in seconds for which to hold execution of the flow.

Example

node example


Here, on start/reset of the application device the next nodes are executed after a delay in time. The write node sets the pin number 2 voltage level high after a delay in time.


On Interval Node

The on interval node is an event node, whcich executes the next nodes after every interval of time.

node example


Properties

  • Name (string) - node name.
  • Interval (number) - time in seconds to execute next nodes on every interval.

Example

node example


Here, after every interval of the time, the display node is executed which prints "Hello World" on serial monitor.


Display Node

The display node prints the string data type value on serial monitor.

node example


Properties

  • Name (string) - node name.
  • Text (string) - text or expresssion to display.

Example

node example


Here, on start/reset of the application device, the display node is executed which prints "Hello World" on serial monitor.


Display Num Node

The display node prints the number data type value on serial monitor.

node example


Properties

  • Name (string) - node name.
  • Number (number) - number or expresssion to display.
  • label (string) - value label.

Example

node example


Here, on start/reset of the application device, the display node is executed which prints 4.56 number on serial monitor.