Dependents:   Telecommande_prologue

Screens.h

Committer:
projetremote
Date:
2011-05-03
Revision:
1:230bf719a4f0
Parent:
0:7e26ffa50bc4

File content as of revision 1:230bf719a4f0:

#include "mbed.h"
#include "TFT_4DGL.h"
#include "Rectangle.h"

class Screens{
    protected : 
        char * infos[];
        TFT_4DGL * ecran;
        Rectangle tab_rectangles[];
    public :   
        Screens(PinName Tx,PinName Rx,PinName rst);
        Screens(TFT_4DGL * p);

        void background_color(int couleur);
        
        void rectangle(int x1, int y1 , int x2, int y2, int color);
        
        void deplace(Rectangle un_rec, int x, int y);
        
        void baudrate(int bauds);
    };