mprls-device

wayland/mprls-pressure-sensor/mprls-device

Creates an MPRLS device.
mprls-device
@/mprls-device
Creates an MPRLS device.
mprls-device
DEV
DEV@/mprls-device
An MPRLS device.
To use the node in your project you should have the wayland/mprls-pressure-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

// Tell XOD where it could download the library:
#pragma XOD require "https://github.com/WaylandM/MTW_Adafruit_MPRLS"

//Include C++ libraries
{{#global}}
#include <Wire.h>
#include <MTW_Adafruit_MPRLS.h>
{{/global}}

// Reserve memory to store an instance of the class,
// and create the instance later:
struct State {
    uint8_t mem[sizeof(Adafruit_MPRLS)];
};

// Define our custom type as a pointer on the class instance.
using Type = Adafruit_MPRLS*;

{{ GENERATED_CODE }}

void evaluate(Context ctx) {
    // It should be evaluated only once on the first (setup) transaction
    if (!isSettingUp())
        return;

    auto state = getState(ctx);

    // Create a new object in the memory area reserved previously.
    Type sensor = new (state->mem) Adafruit_MPRLS();

    emitValue<output_DEV>(ctx, sensor);
}