clearscreen

ivanmason/ra8876/clearscreen

No description
clearscreen
@/clearscreen
RA8876@/ra8876-device
COLnumber
UPDpulse
clearscreen
RA8876
COL
UPD
DONE
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_RA8876>(ctx);
    uint16_t colour = getValue<input_COL>(ctx);

    tft->clearScreen(colour);

    emitValue<output_DONE>(ctx, 1);
}