number-to-micros

nazarijtipusak080/shift-4-bytes/number-to-micros

Converts from type number to type micros . (unsigned integer)
number-to-micros
@/number-to-micros
Converts from type number to type micros . (unsigned integer)
INnumber
number-to-micros
IN
OUT
OUTxod/core/micros
To use the node in your project you should have the nazarijtipusak080/shift-4-bytes 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

node {
    void evaluate(Context ctx) {
        uint32_t byte = getValue<input_IN>(ctx);
        emitValue<output_OUT>(ctx, byte);
    }
}