Dependents:   Telecommande_prologue

Committer:
projetremote
Date:
Tue May 03 13:37:44 2011 +0000
Revision:
1:230bf719a4f0
Parent:
0:7e26ffa50bc4

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
projetremote 0:7e26ffa50bc4 1 #include "mbed.h"
projetremote 0:7e26ffa50bc4 2 #include "TFT_4DGL.h"
projetremote 0:7e26ffa50bc4 3 #include "Rectangle.h"
projetremote 0:7e26ffa50bc4 4
projetremote 0:7e26ffa50bc4 5 class Screens{
projetremote 0:7e26ffa50bc4 6 protected :
projetremote 0:7e26ffa50bc4 7 char * infos[];
projetremote 0:7e26ffa50bc4 8 TFT_4DGL * ecran;
projetremote 0:7e26ffa50bc4 9 Rectangle tab_rectangles[];
projetremote 0:7e26ffa50bc4 10 public :
projetremote 0:7e26ffa50bc4 11 Screens(PinName Tx,PinName Rx,PinName rst);
projetremote 0:7e26ffa50bc4 12 Screens(TFT_4DGL * p);
projetremote 0:7e26ffa50bc4 13
projetremote 0:7e26ffa50bc4 14 void background_color(int couleur);
projetremote 0:7e26ffa50bc4 15
projetremote 0:7e26ffa50bc4 16 void rectangle(int x1, int y1 , int x2, int y2, int color);
projetremote 0:7e26ffa50bc4 17
projetremote 0:7e26ffa50bc4 18 void deplace(Rectangle un_rec, int x, int y);
projetremote 0:7e26ffa50bc4 19
projetremote 0:7e26ffa50bc4 20 void baudrate(int bauds);
projetremote 0:7e26ffa50bc4 21 };