To use the node in your project you should have the hio/nwt-gus-hi 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
#pragma XOD evaluate_on_pin disable
#pragma XOD evaluate_on_pin enable input_UPD
node {
void evaluate(Context ctx) {
// The node responds only if there is an input pulse
if (!isInputDirty<input_UPD>(ctx))
return;
auto display = getValue<input_DEV>(ctx);
auto bright = getValue<input_bright>(ctx);
//display->clearDisplay();
display->set(bright);
//display->displayNum(303, 0, true);
//display->point(1);
//int8_t TimeDisp[] = {0x00, 0x00, 0x00, 0x00};
//TimeDisp[0] = 1;
//TimeDisp[1] = 2;
//TimeDisp[2] = 3;
//TimeDisp[3] = 4;
//display->display(TimeDisp);
//display->displayStr("hello leuts", 500);
emitValue<output_Done>(ctx, 1);
}
}