Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
IS_MPU6050.h
- Committer:
- tichise
- Date:
- 2018-06-04
- Revision:
- 0:81e5563b1ea1
File content as of revision 0:81e5563b1ea1:
#ifndef MBED_IS_MPU6050_H #define MBED_IS_MPU6050_H #include "mbed.h" #include "MPU6050.h" // https://os.mbed.com/users/garfieldsg/code/MPU6050/ class IS_MPU6050 { public: IS_MPU6050(); int getVerticalAngle(); bool isHorizontal(); void setSleepEnabled(bool enabled); private: MPU6050 _mpu; }; #endif