node-red-contrib-timed-counter 0.1.0

A Node-RED node that counts messages received in a specified limit

npm install node-red-contrib-timed-counter

A node that counts messages received in a specified time limit.

This node counts incoming messages while they are received in a configured time limit. When the first message comes in, a countdown timer is started. When subsequent messages arrive within the time limit the counter is incremented, so the first message gets msg.count == 1, the next msg.count == 2, and so on. When the time limit is reached, the counter is reset.

It can be configured in a couple of different ways. Firstly, it can be programmed with a fixed timeout, so it only counts within a time limit from the first message received (in a chain). Alternatively, a non-fixed timeout will result in each subsequent message resetting the time limit but not the counter; so if messages continue to be received by a certain frequency, the timer will be restarted but the count kept. This allows messages to be counted without limit, as long as they keep coming in fast enough.

It can also be configured to allow the messages to come through (with their counts added) as they are received, or whether to withhold them and just send the last one. This is to allow for a single message to represent all of the messages in a chain. For example, if detecting a double- or triple-click of a button to determine an alternative function, the first click might not be desired if immediately followed by a second click.

So, for a typical mouse single-, double- and triple-click detector, set the time limit to 350 milliseconds or so, untick "Fixed timeout", and tick "Final message only". The message that is eventually received will have a msg.count value equal to 1, 2, 3, or more. A switch node or a function node may be used to decide how to process them.

If a message with msg.reset set, then the timer and count will be reset. If "Final message only" is set, this reset message will be lost; if it isn't set then the reset message will flow through.

It can also be configured to apply a single timer and count for all received messages, or have a separate one for each topic. This could be accomplished using a flow, but the "Count per-topic" option makes this simpler.

Node Info

Version: 0.1.0
Updated 1 year, 2 months ago
License: ISC
Rating: 5.0 3

Actions

Rate:

Downloads

87 in the last week

Nodes

  • timed-counter

Keywords

  • node-red
  • repeat
  • counter
  • timed
  • click
  • double-click
  • timing

Maintainers