Vor und Zurück...

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 "drive.h"
00003 #include "move.h"
00004 
00005 int main()
00006 {
00007     start();
00008     
00009     while(1)
00010     {
00011         vor();
00012         zurueck();
00013     
00014         wait(1);
00015     }
00016     
00017 }
00018