lib_LCD_oem http://www.lextronic.fr/P764-afficheur-4-x-20-caracteres-retro-eclaire-vert.html YSI

Dependents:   lib_LCD_oem_example libs_YSI_example TP3exo1

Revision:
5:291652c14402
Parent:
4:18ab8489365f
Child:
6:02f5e2861a9b
--- a/lib_LCD_oem_ELCD.h	Wed Oct 19 13:25:30 2016 +0000
+++ b/lib_LCD_oem_ELCD.h	Tue Nov 15 14:05:45 2016 +0000
@@ -37,6 +37,7 @@
 #define DEF_lib_LCD_OEM_ELCD_H
 
 #include "mbed.h"
+#include <cstdarg>
 
 /** LCD_OEM class
  */
@@ -132,7 +133,7 @@
     * @param ... les arguments à afficher
     * @returns aucun
     */
-	void print(const char *s, ... )
+	void print(const char *s, ... );
 	void print(char *s);
 	void print(char c);
     void print(char c1, char c2);
@@ -146,7 +147,6 @@
 	void print(float nb);
 	void print(double nb);
     
-    
     /*void print(char *s, short nb);
     void print(char *s, short nb1, short nb2);
     void print(char *s, short nb1, unsigned short nb2);
@@ -443,7 +443,7 @@
     
 private :
     void init(void);
-    int putnc(char *s, int n);
+    void putnc(char *s, int n);
     void X_move_position(int n);
     int X_position_cursor;
     int Y_position_cursor;