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.
DriveCommand.h
00001 #ifndef DRIVECOMMAND_H 00002 #define DRIVECOMMAND_H 00003 00004 00005 class DriveCommand 00006 { 00007 public: 00008 00009 DriveCommand(char dir,float timeInSec); 00010 DriveCommand(){} 00011 float GetTime(); 00012 char GetDir(); 00013 void SetTime(float time); 00014 void SetDir(char dir); 00015 00016 private: 00017 char _dir; 00018 float _time; 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 00030 00031 00032 00033 00034 }; 00035 00036 00037 00038 00039 #endif
Generated on Mon Jul 18 2022 14:23:38 by
1.7.2