NOT FINISHED YET!!! My first try to get a self built fully working Quadrocopter based on an mbed, a self built frame and some other more or less cheap parts.

Dependencies:   mbed MODI2C

Revision:
7:9d4313510646
Parent:
6:179752756e9f
Child:
8:d25ecdcdbeb5
--- a/Terminal-Emulation/terminal.cpp	Sat Oct 13 11:12:22 2012 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-
-#include "terminal.h"
-#include "mbed.h"
-
-terminal::terminal(PinName tx, PinName rx) : Serial(tx, rx) 
-    {
-    }
-
-
-void terminal::cls() 
-    {
-    printf("\x1B[2J");
-    }
-
-
-void terminal::locate(int Spalte, int Zeile) 
-    {
-    printf("\x1B[%d;%dH", Zeile + 1, Spalte + 1);
-    }