new version

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 #include "DumpTruck.h"
00003 DigitalOut myled(LED1);
00004 
00005 int main() {
00006     DumpTruck foo(1);
00007     foo.drive();
00008 }
00009