Gyro

MetaWear RG, RPro, C, and CPro come with a Bosch BMI160 6-axis IMU. The gyro functionality of this sensor is accessed by the functions in the gyro_bmi160.h header file.

Configuration

The gyro’s data sampling rate and the range/resolution of the angular velocity are controlled by theoutput data rate and sampling range respectively. After selecting the desired settings in the API, call mbl_mw_gyro_bmi160_write_config. to write the chnges to the sensor.

#include "metawear/sensor/gyro_bmi160.h"

void gyro_config(MblMwMetaWearBoard* board) {
    // Set ODR to 50Hz
    mbl_mw_gyro_bmi160_set_odr(board, MBL_MW_GYRO_BMI160_ODR_50HZ);

    // Set data range to +/125 degrees per second
    mbl_mw_gyro_bmi160_set_range(board, MBL_MW_GYRO_BMI160_FSR_125DPS);

    // Write the changes to the sensor
    mbl_mw_gyro_bmi160_write_config(board);
}

Rotation Rate Sampling

Rotate rate sampling measures the rate of change of the pitch, yaw, and roll angles, in other words, the angular velocity of the spin around the XYZ axes. To enable rotation rate sampling, call mbl_mw_gyro_bmi160_enable_rotation_sampling before starting the gyro.

Angular velocity is represented by the MblMwCartesianFloat struct and is in units of degrees per second. The x, y, and z fields contain the angular velocity of the spin around that axis.

#include "metawear/sensor/gyro_bmi160.h"

void gyro_rot_rate_stream(MblMwMetaWearBoard* board) {
    static auto rot_handler = [](const MblMwData* data) -> void {
        // Cast value to MblMwCartesianFloat*
        auto rot_rate = (MblMwCartesianFloat*)data->value;
        printf("(%.3f, %.3f, %.3f) dps\n", rot_rate->x, rot_rate->y, rot_rate->z);
    };

    auto state_signal = mbl_mw_gyro_bmi160_get_rotation_data_signal(board);
    mbl_mw_datasignal_subscribe(state_signal, rot_handler);

    mbl_mw_gyro_bmi160_enable_rotation_sampling(board);
    mbl_mw_gyro_bmi160_start(board);
}