direction

ivanmason/accelstepper/direction

No description
direction
@/direction
CWpulse
CCWpulse
direction
CW
CCW
DIR
DIRboolean
To use the node in your project you should have the ivanmason/accelstepper 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_CW>(ctx))
        emitValue<output_DIR>(ctx, 1);
    else
        emitValue<output_DIR>(ctx, 0);
}