GY-63_MS5611/libraries/GY521/README.md

348 lines
12 KiB
Markdown
Raw Normal View History

2021-01-29 06:31:58 -05:00
[![Arduino CI](https://github.com/RobTillaart/GY521/workflows/Arduino%20CI/badge.svg)](https://github.com/marketplace/actions/arduino_ci)
2021-10-20 12:48:35 -04:00
[![Arduino-lint](https://github.com/RobTillaart/GY521/actions/workflows/arduino-lint.yml/badge.svg)](https://github.com/RobTillaart/GY521/actions/workflows/arduino-lint.yml)
[![JSON check](https://github.com/RobTillaart/GY521/actions/workflows/jsoncheck.yml/badge.svg)](https://github.com/RobTillaart/GY521/actions/workflows/jsoncheck.yml)
2023-11-02 10:58:05 -04:00
[![GitHub issues](https://img.shields.io/github/issues/RobTillaart/GY521.svg)](https://github.com/RobTillaart/GY521/issues)
2021-01-29 06:31:58 -05:00
[![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/RobTillaart/GY521/blob/master/LICENSE)
[![GitHub release](https://img.shields.io/github/release/RobTillaart/GY521.svg?maxAge=3600)](https://github.com/RobTillaart/GY521/releases)
2023-11-02 10:58:05 -04:00
[![PlatformIO Registry](https://badges.registry.platformio.org/packages/robtillaart/library/GY521.svg)](https://registry.platformio.org/libraries/robtillaart/GY521)
2021-01-29 06:31:58 -05:00
2021-12-18 12:14:36 -05:00
2021-01-29 06:31:58 -05:00
# GY521
2021-12-18 12:14:36 -05:00
Arduino library for I2C GY521 accelerometer-gyroscope sensor a.k.a. MCU-6050.
2021-01-29 06:31:58 -05:00
## Description
2024-01-18 12:45:28 -05:00
**Experimental** library for GY521 a.k.a. MCU-6050.
2021-01-29 06:31:58 -05:00
2021-07-05 13:35:46 -04:00
Library is work in progress, in fact it is extracted and extended from an old project.
2021-01-29 06:31:58 -05:00
It needs to be tested a lot more.
2023-06-12 11:34:31 -04:00
See changelog.md for latest updates.
2024-01-18 12:45:28 -05:00
2024-08-16 07:04:00 -04:00
#### 0.6.1
Improved **calibrate()** to support any angle.
2024-06-24 05:40:29 -04:00
#### 0.6.0
Fixed a bug in calibration function, making previous versions obsolete.
2023-12-05 12:02:00 -05:00
#### 0.5.0 Breaking change
Version 0.5.0 introduced a breaking change.
You cannot set the pins in **begin()** any more.
This reduces the dependency of processor dependent Wire implementations.
The user has to call **Wire.begin()** and can optionally set the Wire pins
before calling **begin()**.
2021-07-05 13:35:46 -04:00
#### Examples
2023-01-27 07:07:04 -05:00
- **GY521_angle** read angleX, angleY, angleZ.
2024-01-18 12:45:28 -05:00
- **GY521_performance_calibrate.ino** determine calibration performance.
2023-01-27 07:07:04 -05:00
- **GY521_performance** measure performance.
- **GY521_pitch_roll_yaw** to get pitch roll yaw.
2024-01-18 12:45:28 -05:00
- **GY521_raw_cooked** make a table of raw measurements and derived data
for analysis e.g. in a spreadsheet.
- **GY521_readCalibration_1** read calibration values / errors for a "flat" sensor.
2023-01-27 07:07:04 -05:00
- **GY521_readCalibration_2** generate calibration code snippet.
- **GY521_test_1** test working of the sensor.
2024-01-18 12:45:28 -05:00
- **GY521_test_2** test set/get functions (sort of unit test).
- **GY521_two_sensors** demo for two sensors.
#### Related
- https://invensense.tdk.com/wp-content/uploads/2015/02/MPU-6000-Datasheet1.pdf
- https://cdn.sparkfun.com/datasheets/Sensors/Accelerometers/RM-MPU-6000A.pdf register map.
- https://github.com/RobTillaart/Angle
- https://github.com/RobTillaart/AngleConverter
2021-01-29 06:31:58 -05:00
2021-02-06 09:52:51 -05:00
## Breakout board
2021-07-05 13:35:46 -04:00
From left to right
2021-02-06 09:52:51 -05:00
2023-01-27 07:07:04 -05:00
| pin | pinName | description | notes |
|:-----:|:---------:|:------------------|:-------:|
| 0 | VCC | +5V |
| 1 | GND | ground |
| 2 | SCL | I2C clock |
| 3 | SDA | I2C data |
| 4 | XDA | auxiliary data | see datasheet
| 5 | XCL | auxiliary clock | see datasheet
| 6 | AD0 | address |
| 7 | INT | interrupt |
2021-02-06 09:52:51 -05:00
2021-07-05 13:35:46 -04:00
2021-02-06 09:52:51 -05:00
#### Address
2021-07-05 13:35:46 -04:00
2021-02-06 09:52:51 -05:00
AD0 connected to GND => 0x68
AD0 connected to VCC => 0x69
2021-01-29 06:31:58 -05:00
## Calibration (short version for now)
2024-01-18 12:45:28 -05:00
Since version 0.5.2 the library has a build in **void calibrate(times)** function which
can be called instead of manual calibration.
This function overwrites the values of axe aye aze gxe gye gze.
**calibrate()** must be called after **setAccelSensitivity(as)** and **setGyroSensitivity(gs)**.
Note the **calibrate()** function takes time, depending on the number of times.
2024-08-16 07:04:00 -04:00
Since version 0.6.1 the calibrate function is extended with optional parameters so the
sensor can be calibrated in any angle.
**bool calibrate(times, angleX = 0, angleY = 0, inverted = false)**
2024-01-18 12:45:28 -05:00
#### Manual calibration
2021-01-29 06:31:58 -05:00
1. load and run calibration example
it shows a header containing 6 numbers and 10 lines of 8 numbers
1. wait until the middle 6 of the longer lines stabilize (should all be 0)
1. copy the 6 numbers above the axe aye aze as these are the numbers needed.
## Interface
2023-01-27 07:07:04 -05:00
```cpp
#include "GY521.h"
```
2021-01-29 06:31:58 -05:00
### Constructor
2021-07-05 13:35:46 -04:00
- **GY521(uint8_t address = 0x69, , TwoWire \*wire = &Wire)** Constructor with default address.
0x68 is also a valid address. The wire argument is optional to select Wire1 Wire2 etc. on some boards.
- **bool begin()** Returns true if address can be found on I2C bus.
2023-12-05 12:02:00 -05:00
Note call **Wire.begin()** before **begin()**.
2021-07-05 13:35:46 -04:00
- **bool isConnected()** returns true if device can be found on I2C bus.
2021-06-13 10:00:27 -04:00
- **void reset()** set all internal values to 0 and throttle time to 10 ms.
2021-12-18 12:14:36 -05:00
- **bool wakeUp()** idem.
2021-01-29 06:31:58 -05:00
2024-01-18 12:45:28 -05:00
### Calibrate
2024-08-16 07:04:00 -04:00
- **bool calibrate(uint16_t times, float angleX = 0, float angleY = 0, bool inverted = false)**
This function overwrites the values of axe aye aze and gxe gye gze.
To improve the quality of the error offsets, the GY521 sensor should not move during the calibration.
The parameter times determines the number of measurements the calibration function should make.
Note that the actual number of samples can be less if a read of the sensor fails.
If there is no good read at all the function returns **false**.
Typical values for times are 100 or more.
If times is set to 0, it will be forced to 1.
Please note this call will be very time consuming.
2024-01-18 12:45:28 -05:00
Ideal the function **calibrate()** should continue until it is stable (how to define) for n reads.
2024-08-16 07:04:00 -04:00
Drawback is that this would make the duration unpredictable.
New since 0.6.1 (experimental)
The optional parameters **float angleX = 0, float angleY = 0** should be between -90 .. +90.
These can be used if the sensor is not lying flat during calibration.
The optional parameter **bool inverted = false** should be set to true if the sensor is
upside down.
2024-01-18 12:45:28 -05:00
2021-01-29 06:31:58 -05:00
### Throttle
2021-07-05 13:35:46 -04:00
- **void setThrottle(bool throttle = true)** throttle to force "delay" between reads.
- **bool getThrottle()** returns true if throttle mode is set.
- **void setThrottleTime(uint16_t ti )** throttle time in milliseconds, max = 65535 = 1++ minute
- **uint16_t getThrottleTime()** returns throttle time set.
2021-01-29 06:31:58 -05:00
2023-01-27 07:07:04 -05:00
### Read
2021-07-05 13:35:46 -04:00
#### Set before read
2021-01-29 06:31:58 -05:00
- **bool setAccelSensitivity(uint8_t as)** as = 0, 1, 2, 3 ==> 2g 4g 8g 16g
- **uint8_t getAccelSensitivity()** returns 0, 1, 2, 3
- **bool setGyroSensitivity(uint8_t gs)** gs = 0,1,2,3 ==> 250, 500, 1000, 2000 degrees/second
2022-07-27 06:42:05 -04:00
- **uint8_t getGyroSensitivity()** returns 0, 1, 2, 3
2024-05-10 10:22:06 -04:00
- **void setNormalize(bool normalize = true)** normalizes pitch roll yaw or not. Default true.
- **bool getNormalize()** returns flag.
2021-01-29 06:31:58 -05:00
#### Actual read
2024-01-18 12:45:28 -05:00
- **int16_t read()** reads all core measurements.
returns status = GY521_OK on success.
2022-07-27 06:42:05 -04:00
- **int16_t readAccel()** read accelerometer only to speed up interaction. This call does update the throttle timer.
returns status = GY521_OK on success.
- **int16_t readGyro()** read gyroscope only to speed up interaction. This call does update the throttle timer.
returns status = GY521_OK on success.
Note: for pitch roll yaw you need to call **read()**.
- **int16_t readTemperature()** read temperature only, does **not** update the throttle timer.
returns status = GY521_OK on success.
- **uint32_t lastTime()** last time sensor is actually read. In milliseconds. Not updated by readTemperature().
2021-01-29 06:31:58 -05:00
2022-10-08 09:41:16 -04:00
Since version 0.3.8 the **read()** and **readGyro()** function is updated to keep the range of **getPitch()**,
2023-06-12 11:34:31 -04:00
**getRoll()** and **getYaw()** in the range 0..359.999 degrees. (Issue #36).
Problem is that with continuous rotation in a same direction internal variables will overflow and new
2022-10-08 09:41:16 -04:00
movements (angles) will get lost as insignificant digits.
2023-06-12 11:34:31 -04:00
In version 0.4.0 the normalization of pitch, roll and yaw is fixed and made conditional. (Issue #42).
2021-01-29 06:31:58 -05:00
2023-06-12 11:34:31 -04:00
#### Calls after read
2021-01-29 06:31:58 -05:00
2024-01-18 12:45:28 -05:00
Note that multiple calls will return the same value.
One must explicitly call **read()** to get new values.
2021-07-05 13:35:46 -04:00
2023-06-12 11:34:31 -04:00
- **float getAccelX()** idem.
- **float getAccelY()** idem.
- **float getAccelZ()** idem.
- **float getAngleX()** idem.
- **float getAngleY()** idem.
- **float getAngleZ()** idem.
- **float getTemperature()** idem.
- **float getGyroX()** idem.
- **float getGyroY()** idem.
- **float getGyroZ()** idem.
2024-01-18 12:45:28 -05:00
#### Experimental Pitch Roll and Yaw
Pitch Roll and Yaw is work in progress and should not be used for projects yet.
2023-06-12 11:34:31 -04:00
- **float getPitch()** idem. May return any number.
If **setNormalize(true)** return value will be 0-359.999
- **float getRoll()** idem. May return any number.
If **setNormalize(true)** return value will be 0-359.999
- **float getYaw()** idem. May return any number.
If **setNormalize(true)** return value will be 0-359.999
2021-01-29 06:31:58 -05:00
2024-05-10 10:22:06 -04:00
#### Digital Low Pass Filter
See datasheet P13-reg26
- **bool setDLPFMode(uint8_t mode)** mode = 0..6, returns false if mode > 6.
- **uint8_t getDLPFMode()** returns the current (set) mode.
| Mode | Acc bandwidth | delay | Gyro bandwidth | delay | Fs |
|:----:|:-------------:|:------:|:--------------:|:------:|:-----:|
| 0 | 260 Hz | 0.0 | 256 Hz | 1.0 | 8 kHz |
| 1 | 184 Hz | 2.0 | 188 Hz | 1.9 | 1 kHz |
| 2 | 94 Hz | 3.0 | 98 Hz | 2.8 | 1 kHz |
| 3 | 44 Hz | 4.9 | 42 Hz | 4.8 | 1 kHz |
| 4 | 21 Hz | 8.5 | 20 Hz | 8.3 | 1 kHz |
| 5 | 10 Hz | 13.8 | 10 Hz | 13.4 | 1 kHz |
| 6 | 5 Hz | 19.0 | 5 Hz | 18.6 | 1 kHz |
#### Generic Register Access
2021-01-29 06:31:58 -05:00
2021-07-05 13:35:46 -04:00
Read the register PDF for the specific value and meaning of registers.
2021-01-29 06:31:58 -05:00
- **uint8_t setRegister(uint8_t reg, uint8_t value)**
- **uint8_t getRegister(uint8_t reg)**
2024-01-18 12:45:28 -05:00
## Documents
- check details registers - MPU-6000-Register-Map1.pdf
#### Error codes
| Error code | value | notes |
|:----------------------------|:-------:|:-------:|
| GY521_OK | 0 | not an error
| GY521_THROTTLED | 1 | not an error
| GY521_ERROR_READ | -1 |
| GY521_ERROR_WRITE | -2 |
| GY521_ERROR_NOT_CONNECTED | -3 |
2021-12-18 12:14:36 -05:00
2024-01-18 12:45:28 -05:00
#### Sensitivity Acceleration
2024-05-10 10:22:06 -04:00
The strength of Earth's gravity varies with latitude (equator = 0<>, poles = 90<39>).
The standard value for gravity (gn) is 9.80665 m/s^2 (often 9.81 m/s^2)
At the equator the gravity (ge) is 9.78033 m/s^2.
The library provides the constant GRAVITY = 9.80655
2024-01-18 12:45:28 -05:00
2024-05-10 10:22:06 -04:00
| value | Acceleration | m/s2 | notes |
|:-------:|:--------------|:----------:|:-------:|
| 0 | 2 g | 19.6131 | default
| 1 | 4 g | 39.2262 |
| 2 | 8 g | 78.4524 |
| 3 | 16 g | 156.9048 |
2024-01-18 12:45:28 -05:00
#### Sensitivity Gyroscope
unit dps = degrees per second.
2024-05-10 10:22:06 -04:00
| value | Gyroscope | radians/sec | notes |
|:-------:|:------------|:-------------:|:-------:|
| 0 | 250 dps | 4.36332313 | default
| 1 | 500 dps | 8.72664626 |
| 2 | 1000 dps | 17.45329252 |
| 3 | 2000 dps | 34.90658504 |
2021-12-18 12:14:36 -05:00
## Operation
2024-01-18 12:45:28 -05:00
See examples, use with care.
2021-12-18 12:14:36 -05:00
2021-01-29 06:31:58 -05:00
## Future
2024-05-10 10:22:06 -04:00
There is no intention to implement getters and setters for all registers.
However if one specific is needed, please open an issue.
2023-01-27 07:07:04 -05:00
#### Must
2024-01-18 12:45:28 -05:00
- time
2021-01-29 06:31:58 -05:00
- improve documentation
2024-01-18 12:45:28 -05:00
- investigate Pitch Roll and Yaw math in detail.
- investigate math needed.
- implementation.
- when?
2023-06-12 11:34:31 -04:00
- test test and test ...(ESP too)
2021-07-05 13:35:46 -04:00
2023-06-12 11:34:31 -04:00
#### Should
2023-01-27 07:07:04 -05:00
2024-08-16 07:04:00 -04:00
- test **calibrate()** function
- for different sensitivities.
- for different angles.
2023-11-02 10:58:05 -04:00
2023-01-27 07:07:04 -05:00
#### Could
2021-01-29 06:31:58 -05:00
2023-11-02 10:58:05 -04:00
- add examples
- improve unit tests?
2024-01-18 12:45:28 -05:00
- reorder code in read(), would that save some micros.?
- first all ax, then ay etc
- footprint / performance gain?
- make enum for sensitivity Accel?
- make enum for sensitivity Gyro?
2022-07-27 06:42:05 -04:00
2023-01-27 07:07:04 -05:00
#### Wont
- look for maths optimizations (atan, hypot, performance)
2023-11-02 10:58:05 -04:00
- ==> hypot optimized (fastTrig?)
2023-01-27 07:07:04 -05:00
- other ideas affect accuracy, so unless new ideas arise.
- calibrate function in the lib
- not as lib will grow too large.
2024-01-18 12:45:28 -05:00
- defaults value for functions?
- user must set function parameters explicit
2023-11-02 10:58:05 -04:00
## Support
If you appreciate my libraries, you can support the development and maintenance.
Improve the quality of the libraries by providing issues and Pull Requests, or
donate through PayPal or GitHub sponsors.
Thank you,