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.
main.cpp
00001 //Pointer to Classes 00002 00003 #include "mbed.h" 00004 #include "Car.h" 00005 00006 int main() { 00007 00008 Car fusca; 00009 00010 while(1){ 00011 00012 fusca.turnRight(); 00013 wait(1); 00014 fusca.goStraight(); 00015 wait(1); 00016 fusca.turnLeft(); 00017 wait(2); 00018 00019 } 00020 00021 } 00022 00023
Generated on Wed Jul 13 2022 02:45:00 by
1.7.2