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.
Dependencies: mbed
DumpTruck.cpp
00001 #include "DumpTruck.h" 00002 00003 DumpTruck::DumpTruck(int truckId) : truckNumber(truckId) { 00004 truckNumber = truckId; 00005 } 00006 00007 void DumpTruck::drive() { 00008 pc.printf("drive()"); 00009 } 00010 00011 void DumpTruck::rotate() { 00012 pc.printf("rotate()"); 00013 } 00014 00015 void DumpTruck::BedDown() { 00016 pc.printf("BedDown()"); 00017 } 00018 void DumpTruck::LowerBed() { 00019 pc.printf("LowerBed()"); 00020 } 00021 void DumpTruck::raiseTo(int angle) { 00022 00023 }
Generated on Sat Jul 23 2022 12:34:28 by
1.7.2