set-timing

wayland/tsl2591-light-sensor/set-timing

Set sensor integration time.
set-timing
@/set-timing
Set sensor integration time.
DEV@/tsl2591-device
A tsl2591-device.
TIMEbyte
Integration time (milliseconds). Options: 100ms = 00h, 200ms = 01h, 300ms = 02h, 400ms = 03h, 500ms = 04h, 600ms = 05h.
UPDpulse
Update. Trigger set-gain.
set-timing
DEV
TIME
UPD
DONE
DONEpulse
Pulse on completion.
To use the node in your project you should have the wayland/tsl2591-light-sensor 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

node {
    void evaluate(Context ctx) {
        // The node responds only if there is an input pulse
        if (!isInputDirty<input_UPD>(ctx))
            return;

        // Get a pointer to the `Adafruit_TSL2591` class instance
        auto sensor = getValue<input_DEV>(ctx);
        sensor -> setTiming((tsl2591IntegrationTime_t)getValue<input_TIME>(ctx));
        emitValue<output_DONE>(ctx, 1);
    }
}