ontje / node-red-contrib-countdown

A simple countdown node
MIT License
5 stars 13 forks source link

node-red-contrib-countdown

node-red-contrib-countdown is a simple countdown node.
It starts a countdown timer on a received input msg and decreases the counter value (at the first output) until the countdown timer elapses. The countdown can be stopped at any time. Also the countdown timer can be set to any new countdown value at any time to reload the timer with a specific value.

The output can emit a msg at its first output with an arbitrary msg.payload contents at the start of the timer as well as at the stop of the countdown timer.
At the second Output the node emits the remaining counter value every second.

The node's output msg can optionally contain an arbitrary topic string.

Loosely based on prior work by Neil Cherry: https://github.com/linuxha/node-red-contrib-mytimeout

node-appearance
Fig. 1: Node appearance

Installation

In Node-RED (preferred)

In a shell

Usage

Node Configuration

node-settings
Fig. 2: Node properties

Countdown (secs) property

Set the Countdown value to the desired countdown time in seconds. The timer will start with this countdown value to decrease the timer value (countdown start value).

Topic

The Topic can be set to any string value. This string is added to the output msg as an additional element msg.topic.

Note: No value is given to the topic.

Timer On payload, Timer Off payload

Set the Timer On payload to any payload type and value which is sent when the counter starts.
Set the Timer Off payload to any payload type and value which is sent when the counter elapses.
In both cases, also nothing to be emitted may be chosen.

Flags

You can configure the timer to

Input

The node evaluates the following input msg types:

Outputs

The node contains two outputs:

Examples

Basic behaviour

This example shows the basic behaviour with

Just activate the inject and look at the output debug node status messages.

Alt text
basic flow
Fig. 3: Basic example flow

Sending messages and retriggering

This example shows how to

Text messages are output on the first output at start and end of the countdown.
You can restart the timer by activating the inject node during the countdown runs.

Alt text
messages and retriggering flow
Fig. 4: Message sending and retriggering example flow

Stopping the countdown timer

This example shows the two options to stop the countdown timer.

Alt text
stopping timer flow
Fig. 5: Timer stopping example flow

Reloading the countdown timer

This example shows the functionality of reloading the countdown value during a running timer.

Alt text
reloading timer flow
Fig. 6: Timer reload example flow