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
Child:
8:d25ecdcdbeb5
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/PC/PC.h	Mon Oct 15 17:23:06 2012 +0000
@@ -0,0 +1,13 @@
+#include "mbed.h"
+
+#ifndef PC_H
+#define PC_H
+
+class PC : public Serial 
+{
+    public:
+        PC(PinName tx, PinName rx);
+        void cls();
+        void locate(int column, int row);
+};
+#endif