print

ivanmason/ra8876/print

No description
print
@/print
DEV@/ra8876-device
TEXTstring
UPDpulse
print
DEV
TEXT
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_DEV>(ctx);
    auto text = getValue<input_TEXT>(ctx);
    for (auto it = text.iterate(); it > 0; ++it)
        tft->putChar(*it);

    emitValue<output_DONE>(ctx, 1);
}