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.
wheelUnit.h
- Committer:
- THtakahiro702286
- Date:
- 2019-07-10
- Revision:
- 1:3c9eaf598f21
- Parent:
- 0:0d52f303ac08
- Child:
- 2:f2e7db075be1
File content as of revision 1:3c9eaf598f21:
#ifndef WHEELUNIT_H #define WHEELUNIT_H #define PI 3.1415926535 #include "mbed.h" #include "pin_config.h" #include "ikarashiMDC.h" #include "omni_wheel.h" class WheelUnit { public: WheelUnit(Serial* serial); void move(float x,float y,float turnPower); void stop(); private: OmniWheel omni; ikarashiMDC **md; Serial pc; float print; }; #endif