get-gain

wayland/ads1115/get-gain

Reads the gain setting.
get-gain
@/get-gain
Reads the gain setting.
DEV@/ads1115-device
An ADS1115 device.
UPDpulse
Update.
get-gain
DEV
UPD
Gain
Done
Donepulse
Pulse on read.
Gainnumber
Value of gain.
To use the node in your project you should have the wayland/ads1115 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_ADS1115` class instance
        auto sensor = getValue<input_DEV>(ctx);
        adsGain_t gain = sensor->getGain();

        if (gain==GAIN_TWOTHIRDS) {
            emitValue<output_Gain>(ctx, 0.67);
        }
        else if (gain==GAIN_ONE) {
            emitValue<output_Gain>(ctx, 1);
        }
        else if (gain==GAIN_TWO) {
            emitValue<output_Gain>(ctx, 2);
        }
        else if (gain==GAIN_FOUR) {
            emitValue<output_Gain>(ctx, 4);
        }
        else if (gain==GAIN_EIGHT) {
            emitValue<output_Gain>(ctx, 8);
        }
        else if (gain==GAIN_SIXTEEN) {
            emitValue<output_Gain>(ctx, 16);
        }
        emitValue<output_Done>(ctx, 1);
    }
}