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

PC/PC.h

Committer:
maetugr
Date:
2012-10-15
Revision:
7:9d4313510646
Child:
8:d25ecdcdbeb5

File content as of revision 7:9d4313510646:

#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