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.
Car.h
00001 #ifndef CAR_MACRO_H 00002 #define CAR_MACRO_H 00003 00004 #include "mbed.h" 00005 00006 00007 00008 class Car{ 00009 00010 private: 00011 uint32_t speed; 00012 00013 public: 00014 uint32_t getSpeed(void); 00015 void setSpeed(uint32_t); 00016 00017 void turnRight(void); 00018 void turnLeft(void); 00019 void goStraight(void); 00020 00021 }; 00022 00023 00024 #endif
Generated on Wed Jul 13 2022 02:45:00 by
1.7.2