measure-iaq

wayland/sgp30/measure-iaq

Take a single CO2/TVOC measurement.
measure-iaq
@/measure-iaq
Take a single CO2/TVOC measurement.
DEV@/sgp30-device
An SGP30 device.
UPDpulse
Update.
measure-iaq
DEV
UPD
CO2
TVOC
Done
Donepulse
Pulse when a measurement has completed successfully.
TVOCnumber
Total volatile organic compounds (ppb).
CO2number
CO2 (ppm).
To use the node in your project you should have the wayland/sgp30 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 sensor = getValue<input_DEV>(ctx);

        if (! sensor->IAQmeasure()) {
            raiseError(ctx);
            return;
        }

        emitValue<output_CO2>(ctx, sensor->eCO2);
        emitValue<output_TVOC>(ctx, sensor->TVOC);
        emitValue<output_Done>(ctx, 1);

    }
}