mpu6050 icon indicating copy to clipboard operation
mpu6050 copied to clipboard

MPU6050 embedded-hal driver written in Rust

Results 11 mpu6050 issues
Sort by recently updated
recently updated
newest added

There are constructors that allow to set accelerometer and gyro ranges: `new_with_sens` and `new_with_addr_and_sens`. But an `init` method resets the ranges to `AccelRange::G2` and `GyroRange::D250`: [init](https://github.com/juliangaal/mpu6050/blob/aeb0e91bc7d0fbfb1efde2bb29ef6c31be33f684/src/lib.rs#L160) It looks strange for...