Skip to content

Forced mode example uses 16x oversampling for humidity instead of pressure #32

Description

@SylvainGarrigues

conf.os_hum = BME68X_OS_16X;
conf.os_pres = BME68X_OS_1X;
conf.os_temp = BME68X_OS_2X;

Shouldn't it be, to match datasheet example and Arduino code example:

    conf.os_hum = BME68X_OS_1X;
    conf.os_pres = BME68X_OS_16X;
    conf.os_temp = BME68X_OS_2X;

See https://github.com/boschsensortec/Bosch-BME68x-Library/blob/4f37df69dde205e4f58d2bb9a45568c61e128e86/src/bme68xLibrary.h#L245:

    void setTPH(uint8_t osTemp = BME68X_OS_2X, uint8_t osPres = BME68X_OS_16X, uint8_t osHum = BME68X_OS_1X);

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions