pamoja for TypeScript - v0.1.17
    Preparing search index...

    Interface Bmp280RawMeasurement

    The uncompensated codes a BMP280 burst read carries.

    interface Bmp280RawMeasurement {
        pressure: number;
        pressureSkipped: boolean;
        temperature: number;
        temperatureSkipped: boolean;
    }
    Index
    pressure: number

    The 20-bit pressure code.

    pressureSkipped: boolean

    Whether pressure oversampling was off, so the code carries no reading.

    temperature: number

    The 20-bit temperature code.

    temperatureSkipped: boolean

    Whether temperature oversampling was off, so the code carries no reading.