MetaWear C++ API
0.18.0
C++ implementation of the MetaWear protocol
|
Interacts with the supported Bosch barometers, currenly BMP280 and BME280. More...
#include "sensor_common.h"
Go to the source code of this file.
Enumerations | |
enum | MblMwBaroBoschOversampling { MBL_MW_BARO_BOSCH_OVERSAMPLING_SKIP = 0, MBL_MW_BARO_BOSCH_OVERSAMPLING_ULTRA_LOW_POWER, MBL_MW_BARO_BOSCH_OVERSAMPLING_LOW_POWER, MBL_MW_BARO_BOSCH_OVERSAMPLING_STANDARD, MBL_MW_BARO_BOSCH_OVERSAMPLING_HIGH, MBL_MW_BARO_BOSCH_OVERSAMPLING_ULTRA_HIGH } |
Supported oversampling modes on the Bosch barometers. | |
enum | MblMwBaroBoschIirFilter { MBL_MW_BARO_BOSCH_IIR_FILTER_OFF = 0, MBL_MW_BARO_BOSCH_IIR_FILTER_AVG_2, MBL_MW_BARO_BOSCH_IIR_FILTER_AVG_4, MBL_MW_BARO_BOSCH_IIR_FILTER_AVG_8, MBL_MW_BARO_BOSCH_IIR_FILTER_AVG_16 } |
Supported filter modes on the Bosch barometers. | |
enum | MblMwBaroBmp280StandbyTime { MBL_MW_BARO_BMP280_STANDBY_TIME_0_5ms = 0, MBL_MW_BARO_BMP280_STANDBY_TIME_62_5ms, MBL_MW_BARO_BMP280_STANDBY_TIME_125ms, MBL_MW_BARO_BMP280_STANDBY_TIME_250ms, MBL_MW_BARO_BMP280_STANDBY_TIME_500ms, MBL_MW_BARO_BMP280_STANDBY_TIME_1000ms, MBL_MW_BARO_BMP280_STANDBY_TIME_2000ms, MBL_MW_BARO_BMP280_STANDBY_TIME_4000ms } |
Supported stand by times on the BMP280 barometer. | |
enum | MblMwBaroBme280StandbyTime { MBL_MW_BARO_BME280_STANDBY_TIME_0_5ms = 0, MBL_MW_BARO_BME280_STANDBY_TIME_62_5ms, MBL_MW_BARO_BME280_STANDBY_TIME_125ms, MBL_MW_BARO_BME280_STANDBY_TIME_250ms, MBL_MW_BARO_BME280_STANDBY_TIME_500ms, MBL_MW_BARO_BME280_STANDBY_TIME_1000ms, MBL_MW_BARO_BME280_STANDBY_TIME_10ms, MBL_MW_BARO_BME280_STANDBY_TIME_20ms } |
Supported stand by times on the BME280 barometer. | |
Variables | |
const uint8_t | MBL_MW_MODULE_BARO_TYPE_BMP280 = 0 |
Constant identifying the BMP280 barometer module type. | |
const uint8_t | MBL_MW_MODULE_BARO_TYPE_BME280 = 1 |
Constant identifying the BME280 barometer module type. | |
Interacts with the supported Bosch barometers, currenly BMP280 and BME280.
The BMP280 and BME280 sensors are identical except for the standby times. Functions that are generic for both barometers have "bosch" in the name whereas functions specific to either accelerometer are contain their model i.e. "bmp280" or "bme280".
METAWEAR_API void mbl_mw_baro_bme280_set_standby_time | ( | MblMwMetaWearBoard * | board, |
MblMwBaroBme280StandbyTime | standby_time | ||
) |
Set the standby time for the BME280 barometer.
board | Pointer to the board to modify |
standby_time | Standby time value to set |
METAWEAR_API void mbl_mw_baro_bmp280_set_standby_time | ( | MblMwMetaWearBoard * | board, |
MblMwBaroBmp280StandbyTime | standby_time | ||
) |
Set the standby time for the BMP280 barometer.
board | Pointer to the board to modify |
standby_time | Standby time value to set |
METAWEAR_API MblMwDataSignal* mbl_mw_baro_bosch_get_altitude_data_signal | ( | const MblMwMetaWearBoard * | board | ) |
Retrieves the data signal representing altitude data from a Bosch barometer.
board | Pointer to the board to retrieve the signal from |
METAWEAR_API MblMwDataSignal* mbl_mw_baro_bosch_get_pressure_data_signal | ( | const MblMwMetaWearBoard * | board | ) |
Retrieves the data signal representing pressure data from a Bosch barometer.
board | Pointer to the board to retrieve the signal from |
METAWEAR_API MblMwDataSignal* mbl_mw_baro_bosch_get_pressure_read_data_signal | ( | const MblMwMetaWearBoard * | board | ) |
Retrieves the data signal representing a single read from a Bosch barometer.
board | Pointer to the board to retrieve the signal from |
METAWEAR_API void mbl_mw_baro_bosch_set_iir_filter | ( | MblMwMetaWearBoard * | board, |
MblMwBaroBoschIirFilter | iir_filter | ||
) |
Set the iir filter coefficient.
board | Pointer to the board to modify |
iir_filter | IIR filter value to set |
METAWEAR_API void mbl_mw_baro_bosch_set_oversampling | ( | MblMwMetaWearBoard * | board, |
MblMwBaroBoschOversampling | oversampling | ||
) |
Set the oversampling mode.
board | Pointer to the board to modify |
oversampling | Oversampling value to set |
METAWEAR_API float mbl_mw_baro_bosch_set_standby_time | ( | MblMwMetaWearBoard * | board, |
float | standby_time_ms | ||
) |
Set the standby time.
If an invalid standby time is used, the closest valid value will be chosen
board | Pointer to the board to modify |
standby_time_ms | Standby time value to set, in milliseconds |
METAWEAR_API void mbl_mw_baro_bosch_start | ( | const MblMwMetaWearBoard * | board | ) |
Start pressure and altitude sensing.
board | Pointer to the board to send the command to |
METAWEAR_API void mbl_mw_baro_bosch_stop | ( | const MblMwMetaWearBoard * | board | ) |
Stop pressure and altitude sensing.
board | Pointer to the board to send the command to |
METAWEAR_API void mbl_mw_baro_bosch_write_config | ( | const MblMwMetaWearBoard * | board | ) |
Writes the configuration to the sensor.
board | Pointer to the board to send the command to |