getcursor

ivanmason/ra8876/getcursor

Get the coordinate of the text cursor
getcursor
@/getcursor
Get the coordinate of the text cursor
DEV@/ra8876-device
UPDpulse
getcursor
CURX
CURY
DONE
DEV
UPD
DONEpulse
CURYnumber
Text cursor Y position
CURXnumber
Text cursor X position
To use the node in your project you should have the ivanmason/ra8876 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_UPD>(ctx))
        return;
    auto tft = getValue<input_DEV>(ctx);

    emitValue<output_CURX>(ctx, tft->getCursorX());
    emitValue<output_CURY>(ctx, tft->getCursorY());
    emitValue<output_DONE>(ctx, 1);
}