dimm-get-mode

cesars/dimmer/dimm-get-mode

Reading request of the current mode
dimm-get-mode
@/dimm-get-mode
Reading request of the current mode
DIMM@/dimm-dev
Input to Dev
GETpulse
Pulse for get current mode
dimm-get-mode
DIMM'
VAL
DONE
DIMM
GET
DONEpulse
Pulse done
VALnumber
Value mode set
DIMM'@/dimm-dev
Output Dev to DIMM
To use the node in your project you should have the cesars/dimmer 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) {
        emitValue<output_DIMMU0027>(ctx, getValue<input_DIMM>(ctx));
        if (!isInputDirty<input_GET>(ctx))return;

        auto dimm = getValue<input_DIMM>(ctx);
        int val = dimm->getMode();
        emitValue<output_VAL>(ctx, val);
        emitValue<output_DONE>(ctx, 1);
    }
}