gate-copy4(byte)

hio/nwt-gus-hi/gate-copy4(byte)

Allows values to pass through only if EN pin is set to true
gate-copy4(byte)
@/gate-copy4(byte)
Allows values to pass through only if EN pin is set to true
INbyte
ENboolean
Whether values should pass through
gate-copy4(byte)
IN
OUT
EN
OUTbyte
To use the node in your project you should have the hio/nwt-gus-hi 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) {
        if (getValue<input_EN>(ctx))
            emitValue<output_OUT>(ctx, getValue<input_IN>(ctx));

    }
}