Test

Committer:
GobaudJeanLouis
Date:
Fri Jun 07 20:12:31 2013 +0000
Revision:
1:82cbdeae5d44
Parent:
0:9a44543bf4fc
none

Who changed what in which revision?

UserRevisionLine numberNew contents of line
GobaudJeanLouis 0:9a44543bf4fc 1
GobaudJeanLouis 0:9a44543bf4fc 2 #ifndef MBED_LCD_H
GobaudJeanLouis 0:9a44543bf4fc 3 #define MBED_LCD_H
GobaudJeanLouis 0:9a44543bf4fc 4
GobaudJeanLouis 0:9a44543bf4fc 5 #include <string>
GobaudJeanLouis 0:9a44543bf4fc 6 #include "mbed.h"
GobaudJeanLouis 0:9a44543bf4fc 7
GobaudJeanLouis 0:9a44543bf4fc 8
GobaudJeanLouis 0:9a44543bf4fc 9 class Lcd: public Serial
GobaudJeanLouis 0:9a44543bf4fc 10 {
GobaudJeanLouis 0:9a44543bf4fc 11 public:
GobaudJeanLouis 0:9a44543bf4fc 12 // Constructeur
GobaudJeanLouis 0:9a44543bf4fc 13
GobaudJeanLouis 0:9a44543bf4fc 14 Lcd(PinName tx, PinName rx,int Bauds);
GobaudJeanLouis 0:9a44543bf4fc 15 void Cls();
GobaudJeanLouis 0:9a44543bf4fc 16 void LcdS(string,string="");
GobaudJeanLouis 0:9a44543bf4fc 17 void LcdF(char[],float);
GobaudJeanLouis 0:9a44543bf4fc 18 void LcdF(float);
GobaudJeanLouis 0:9a44543bf4fc 19 void LcdI(char[],int);
GobaudJeanLouis 0:9a44543bf4fc 20 void LcdI(int);
GobaudJeanLouis 0:9a44543bf4fc 21
GobaudJeanLouis 0:9a44543bf4fc 22 void LCD(string,string="");
GobaudJeanLouis 0:9a44543bf4fc 23 void LCD(char[],float);
GobaudJeanLouis 0:9a44543bf4fc 24 void LCD(float);
GobaudJeanLouis 0:9a44543bf4fc 25 void LCD(char[],int);
GobaudJeanLouis 0:9a44543bf4fc 26 void LCD(int);
GobaudJeanLouis 0:9a44543bf4fc 27 };
GobaudJeanLouis 0:9a44543bf4fc 28 #endif