Add Random number generator node.

This commit is contained in:
Dave C-J
2014-10-27 20:26:49 +00:00
parent 92b788155e
commit ecbde5d3d5
5 changed files with 324 additions and 0 deletions

23
function/random/README.md Normal file
View File

@@ -0,0 +1,23 @@
node-red-node-random
====================
A <a href="http://nodered.org" target="_new">Node-RED</a> node that when triggered generates a random number between two values.
Install
-------
Run the following command in the root directory of your Node-RED install
npm install node-red-node-random
Usage
-----
A simple node to generate a random number when triggered.
If integer mode is selected (default) it will return an integer **between and including** the two values given - so selecting 1 to 6 will return values 1,2,3,4,5 or 6.
If floating point mode is selected then it will return a number **between** the two values given - so selecting 1 to 6 will return values 1 < x < 6 .
**Note:** This generates **numbers**.