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
00001 #ifndef WHEELUNIT_H 00002 #define WHEELUNIT_H 00003 00004 #define PI 3.1415926535 00005 00006 #include "mbed.h" 00007 #include "pin_config.h" 00008 #include "ikarashiMDC.h" 00009 #include "omni_wheel.h" 00010 00011 class WheelUnit 00012 { 00013 public: 00014 WheelUnit(Serial* serial); 00015 void move(float x,float y,float turnPower); 00016 void stop(); 00017 00018 private: 00019 OmniWheel omni; 00020 ikarashiMDC **md; 00021 Serial pc; 00022 float print; 00023 float wheel[4]; 00024 }; 00025 00026 #endif
Generated on Tue Jul 12 2022 18:01:51 by
 1.7.2
 1.7.2