Test

Revision:
0:9a44543bf4fc
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Lcd.h	Fri Jun 07 13:45:33 2013 +0000
@@ -0,0 +1,28 @@
+
+#ifndef MBED_LCD_H
+#define MBED_LCD_H
+
+#include <string>
+#include "mbed.h"
+
+
+class Lcd: public Serial
+{
+public:
+// Constructeur
+
+    Lcd(PinName tx, PinName rx,int Bauds);
+    void Cls();
+    void LcdS(string,string="");
+    void LcdF(char[],float);
+    void LcdF(float);
+    void LcdI(char[],int);
+    void LcdI(int);      
+    
+    void LCD(string,string="");
+    void LCD(char[],float);
+    void LCD(float);   
+    void LCD(char[],int);
+    void LCD(int);   
+};
+#endif
\ No newline at end of file