random

wayland/esp8266-true-random/random

Generates a random integer between 0 and the highest signed long integer 2,147,483,647.
random
@/random
Generates a random integer between 0 and the highest signed long integer 2,147,483,647.
UPDpulse
Update
random
OUT
UPD
OUTnumber
A random integer between 0 and the highest signed long integer 2,147,483,647.
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());
        }
    }
}