drawpixel

ivanmason/ra8876/drawpixel

No description
drawpixel
@/drawpixel
DEV@/ra8876-device
Xnumber
Ynumber
COLnumber
UPDpulse
drawpixel
DONE
DEV
X
Y
COL
UPD
DONEpulse
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);
    int x = getValue<input_X>(ctx);
    int y = getValue<input_Y>(ctx);
    uint16_t colour = getValue<input_COL>(ctx);

    tft->drawPixel(x,y,colour);

    emitValue<output_DONE>(ctx, 1);
}