dimm-on-off

cesars/rbd-dimm/dimm-on-off

Set state ON-OFF
dimm-on-off
@/dimm-on-off
Set state ON-OFF
DIMM@/dimm-dev
Intput to Dev
ON-OFFboolean
True=ON / False=OFF
Setpulse
Pulse for set state
dimm-on-off
Dev
Done
DIMM
ON-OFF
Set
Donepulse
Pulse done
Dev@/dimm-dev
Output Dev to DIMM
To use the node in your project you should have the cesars/rbd-dimm 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) {

    emitValue<output_Dev>(ctx, getValue<input_DIMM>(ctx));
    if (!isInputDirty<input_Set>(ctx))
        return;

    auto dimm = getValue<input_DIMM>(ctx);
    if (isInputDirty<input_Set>(ctx)){
        if(getValue<input_ON_OFF>(ctx) == true){
            dimm->setState(ON);
        }else{
            dimm->setState(OFF);
        }
    }
    emitValue<output_Done>(ctx, 1);
}