random-0-1

wayland/esp8266-true-random/random-0-1

Generates a random number between 0 and 1.
random-0-1
@/random-0-1
Generates a random number between 0 and 1.
UPDpulse
Update
random-0-1
OUT
UPD
OUTnumber
A random number between 0 and 1.
To use the node in your project you should have the wayland/esp8266-true-random library installed. Use the “File → Add Library” menu item in XOD IDE if you don’t have it yet. See Using libraries for more info.

C++ implementation

// Tell XOD where it could download the library:
#pragma XOD require "https://github.com/marvinroger/ESP8266TrueRandom"

//Include C++ libraries
#include <ESP8266TrueRandom.h>

node {
    void evaluate(Context ctx) {
        if (isInputDirty<input_UPD>(ctx)) {
            emitValue<output_OUT>(ctx, ESP8266TrueRandom.random()/2147483647.0);
        }
    }
}