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.cpp

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

File content as of revision 7:9d4313510646:

#include "PC.h"
#include "mbed.h"

PC::PC(PinName tx, PinName rx) : Serial(tx, rx) 
{
}


void PC::cls() 
{
    printf("\x1B[2J");
}


void PC::locate(int Spalte, int Zeile) 
{
    printf("\x1B[%d;%dH", Zeile + 1, Spalte + 1);
}