if(pulse)

koadrobot/logics/if(pulse)

IF - GATE R=TRIG? T : - Allows value to pass through only if TRIG pulse.
if(pulse)
@/if(pulse)
IF - GATE R=TRIG? T : - Allows value to pass through only if TRIG pulse.
TRIGpulse
Tnumber
if(pulse)
TRIG
T
R
Rnumber
To use the node in your project you should have the koadrobot/logics 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

struct State {
};

{{ GENERATED_CODE }}

void evaluate(Context ctx) {
    if (isInputDirty<input_TRIG>(ctx))
        emitValue<output_R>(ctx, getValue<input_T>(ctx));
}

Tabular tests

TRIGTR
pulse1010
no-pulse510// last update
pulse55