Dependents:   Telecommande_prologue

Revision:
0:7e26ffa50bc4
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Screens.h	Tue May 03 13:31:50 2011 +0000
@@ -0,0 +1,21 @@
+#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);
+    };
\ No newline at end of file