Releases: rfetick/MPU6050_light
Releases · rfetick/MPU6050_light
Version 1.2.1
Version 1.2.0
Changes
- [new feature] The library manages upside-down mounted device (see Issue #6)
- [bug fix] X and Y angles are correctly wrapped in the ranges [-180,180]° and [-90,90]° (see Issue #4)
- [bug fix] Modified calling sequence to MPU6050 registers at begin (see Issue #1)
Compatibility
The last bug fix might solve the compatibility issue that was previously experienced on ESP32 (to be confirmed)
version 1.1.0
Changes
- Possibility to compute gyroscopes and/or accelerometers offsets
- Possibility to modify the gyroscope or accelerometer sensitivity configurations on the MPU6050 device
- Possibility to change the complementary filter coefficient after initialisation
- Improved documentation within a dedicated PDF file
Warning: loss of compatibility
- Does not support any more the
begin(float filter_coeff)
method. Now the method can only be called asbegin( )
for a default sensitivity configuration, orbegin(int gyro_config, int acc_config)
for a manually defined sensitivity configuration (see above the second bullet point of changes)
version 1.0.0
First release. Codes are based on MPU6050_tockn library. It has been modified for readability, speed and robustness.