.. highlight:: python Gyroscope ========== Gyroscopes, or gyros, are devices that measure or maintain rotational motion. The units of angular velocity are measured in degrees per second (°/s) or revolutions per second (RPS). Angular velocity is simply a measurement of speed of rotation. MetaWear RG, RPro, C, MMR, MMC, MTR, 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. :: # Set ODR to 200Hz libmetawear.mbl_mw_gyro_bmi160_set_odr(board, GyroBmi160Odr._200Hz) # Set data range to +/250 degrees per second libmetawear.mbl_mw_gyro_bmi160_set_range(board, GyroBmi160Range._250dps) # Write the changes to the sensor libmetawear.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. :: def data_handler(self, ctx, data): print("%s -> %s" % (self.device.address, parse_value(data))) callback = FnVoid_VoidP_DataP(data_handler) gyro = libmetawear.mbl_mw_gyro_bmi160_get_rotation_data_signal(board) libmetawear.mbl_mw_datasignal_subscribe(gyro, None, callback) libmetawear.mbl_mw_gyro_bmi160_enable_rotation_sampling(board) libmetawear.mbl_mw_gyro_bmi160_start(board) sleep(10.0) # TIME PASSES libmetawear.mbl_mw_gyro_bmi160_stop(board) libmetawear.mbl_mw_gyro_bmi160_disable_rotation_sampling(board) libmetawear.mbl_mw_datasignal_unsubscribe(gyro) High Frequency Stream ^^^^^^^^^^^^^^^^^^^^^ Firmware v1.2.3+ contains a packed mode for the hyro which combines 3 rotation data samples into 1 ble packet allowing the board to stream data at a throughput higher than 100Hz. This special data signal is retrieved from the `mbl_mw_gyro_bmi160_get_rotation_data_signal `_ function and is only for streaming; do not use it with data processing or logging. :: def sensorDataHandler(self, context, data): data_ptr= cast(data.contents.value, POINTER(CartesianFloat)) self.data_cartesian_float= copy.deepcopy(data_ptr.contents) self.data = self.data_cartesian_float sensor_data_handler = FnVoid_VoidP_DataP(self.sensorDataHandler) libmetawear.mbl_mw_gyro_bmi160_set_odr(board, GyroBmi160Odr._200Hz) libmetawear.mbl_mw_gyro_bmi160_write_config(board) gyro_rot_data_signal = libmetawear.mbl_mw_gyro_bmi160_get_rotation_data_signal(board) libmetawear.mbl_mw_datasignal_subscribe(gyro_rot_data_signal, None, sensor_data_handler)