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:
0:0c4fafa398b4
Child:
1:5a64632b1eb9
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/LED/LED.h	Wed Sep 26 12:15:00 2012 +0000
@@ -0,0 +1,20 @@
+// by MaEtUgR
+
+#ifndef __LED_H
+#define __LED_H
+
+#include "mbed.h"
+
+class LED {
+
+public:
+    LED();
+    void shownumber(int number);
+    void roll(int times);
+    void tilt(int index);
+
+private:
+    BusOut Led;
+};
+
+#endif
\ No newline at end of file