micros-to-number

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

Converts from type micros to type number. (unsigned integer)
micros-to-number
@/micros-to-number
Converts from type micros to type number. (unsigned integer)
INxod/core/micros
micros-to-number
IN
OUT
OUTnumber
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);
    }
}