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.
Gyro.h
- Committer:
- takeru0x1103
- Date:
- 2018-11-26
- Revision:
- 8:1ca49cb18290
- Child:
- 9:557628b373ea
File content as of revision 8:1ca49cb18290:
#ifndef GYRO_H #define GYRO_H class Gyro { /* * Varialbles */ public: /* * Constructor */ Gyro(); /* * Destructor. */ virtual ~Gyro(); float GetAngularRate();// float GetAccel(); float GetAngle(); void SetYawRef(); }; #endif /* GYRO_H */