Driver for MeGyro module.
More...
Driver for MeGyro module.
- Author
- MakeBlock
- Version
- V1.0.5
- Date
- 2018/01/03
- Copyright
- This software is Copyright (C), 2012-2016, MakeBlock. Use is subject to license
conditions. The main licensing options available are GPL V2 or Commercial:
- Open Source Licensing GPL V2
- This is the appropriate option if you want to share the source code of your
application with everyone you distribute it to, and you also want to give them
the right to share who uses it. If you wish to use this software under Open
Source Licensing, you must contribute all your source code to the open source
community in accordance with the GPL Version 2 when your application is
distributed. See http://www.gnu.org/copyleft/gpl.html
- Description
- This file is a drive for MeGyro module, It supports MeGyro V1.0 device provided by MakeBlock.
- Method List:
- void MeGyro::setpin(uint8_t AD0, uint8_t INT)
- void MeGyro::begin(void)
- void MeGyro::update(void)
- void MeGyro::fast_update(void)
- uint8_t MeGyro::getDevAddr(void)
- double MeGyro::getAngleX(void)
- double MeGyro::getAngleY(void)
- double MeGyro::getAngleZ(void)
- double MeGyro::getGyroX(void)
- double MeGyro::getGyroY(void)
- History:
`<Author>` `<Time>` `<Version>` `<Descr>`
Lawrence 2015/09/02 1.0.0 rebuild the old lib.
Lawrence 2015/09/10 1.0.1 Added some comments and macros.
Mark Yan 2016/03/09 1.0.2 Add function fast_update.
Mark Yan 2016/03/09 1.0.3 Add function getGyroX and getGyroY.
Leo lu 2017/04/27 1.0.4 fix issue of z-axis output double. getAngle function just return, do not call update anymore.
Mark Yan 2018/01/03 1.0.5 Adjust the initialization sequence to optimize the Z-axis drift.