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.
Dependencies: PID QEI chair_BNO055 ros_lib_kinetic
Fork of wheelchaircontrol by
imu.h
- Committer:
- ryanlin97
- Date:
- 2018-07-17
- Revision:
- 4:29a27953fe70
File content as of revision 4:29a27953fe70:
#ifndef Imu
#define imu
#include "mbed.h"
#include "math.h"
#include "BNO055.h"
#define PI 3.141593
#define SDA D14
#define SCL D15
class Imu
{
public:
Imu();
Imu(BNO055*)
void setup();
private:
};
#endif
