settextscale

ivanmason/ra8876/settextscale

No description
settextscale
@/settextscale
DEV@/ra8876-device
SCALEnumber
Scale size of 1 to 4
UPDpulse
settextscale
DONE
DEV
SCALE
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 scale = getValue<input_SCALE>(ctx);
    tft->setTextScale(scale,scale);

    emitValue<output_DONE>(ctx, 1);
}