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.
Omni/Omni.h
- Committer:
- himarsmty
- Date:
- 2018-05-07
- Revision:
- 0:5d1c1999d61d
File content as of revision 0:5d1c1999d61d:
#ifndef OMNI_H_ #define OMNI_H_ #include "Motor_3.h" #include "mbed.h" #include "math.h" class Omni{ public: Omni():_Vx(0),_Vy(0),_argular(0){} void mv_x(double speed); void mv_y(double speed); protected: double _Vx; double _Vy; double _argular; }; #endif;