Firmware v1.1.3 Released
Firmware v1.1.3 addresses issues sighted by the MetaWear community.
Changes
- Fixed bug with using accelerometer, gyroscope, and magnetometer simultaneously
- Fixed incorrect response format from I2C reads
- Fixed a case where starting the BMI160 accelerometer with the macro puts the board into bootloader mode
This discussion has been closed.
Comments
let accelerometerBMI160 = self.device.accelerometer as! MBLAccelerometerBMI160
accelerometerBMI160.orientationEvent.startNotificationsWithHandlerAsync({ (data:AnyObject?, error:NSError?) -> Void in
if let orientation = data as? MBLOrientationData {
let orientationInt = orientation.valueForKey("_orientation") as! Int
print(orientationInt)
}
})