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

Committer:
maetugr
Date:
Mon Oct 15 19:03:17 2012 +0000
Revision:
8:d25ecdcdbeb5
Parent:
7:9d4313510646
mit Ticker (aufger?umt)

Who changed what in which revision?

UserRevisionLine numberNew contents of line
maetugr 7:9d4313510646 1 #include "mbed.h"
maetugr 7:9d4313510646 2
maetugr 7:9d4313510646 3 #ifndef PC_H
maetugr 7:9d4313510646 4 #define PC_H
maetugr 7:9d4313510646 5
maetugr 7:9d4313510646 6 class PC : public Serial
maetugr 7:9d4313510646 7 {
maetugr 7:9d4313510646 8 public:
maetugr 8:d25ecdcdbeb5 9 PC(PinName tx, PinName rx, int baud);
maetugr 7:9d4313510646 10 void cls();
maetugr 7:9d4313510646 11 void locate(int column, int row);
maetugr 7:9d4313510646 12 };
maetugr 7:9d4313510646 13 #endif