get-device-id

wayland/lis3dh-accelerometer/get-device-id

Read the ID of the lis3dh device.
get-device-id
@/get-device-id
Read the ID of the lis3dh device.
DEV@/lis3dh-device
A lis3dh-device.
UPDpulse
Update.
get-device-id
ID
DONE
DEV
UPD
DONEpulse
Pulse on read of device ID.
IDbyte
Device ID.
To use the node in your project you should have the wayland/lis3dh-accelerometer 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) {
    // The node responds only if there is an input pulse
    if (!isInputDirty<input_UPD>(ctx))
        return;

    // Get a pointer to the `Adafruit_LIS3DH` class instance
    auto sensor = getValue<input_DEV>(ctx);
    emitValue<output_ID>(ctx, sensor->getDeviceID());
    emitValue<output_DONE>(ctx, 1);
}