Library for the serial LCD-09396 of Sparkfun

Dependents:   M5VelocityALLCODE

Fork of SerLCDv25 by Beeli Nick

Files at this revision

API Documentation at this revision

Comitter:
Mach5
Date:
Fri Apr 05 16:03:36 2013 +0000
Parent:
0:497632f57657
Commit message:
sup;

Changed in this revision

SerLCDv25.h Show annotated file Show diff for this revision Revisions of this file
SertLCDv25.cpp Show annotated file Show diff for this revision Revisions of this file
diff -r 497632f57657 -r 65590e1ed8ed SerLCDv25.h
--- a/SerLCDv25.h	Wed Aug 10 13:32:08 2011 +0000
+++ b/SerLCDv25.h	Fri Apr 05 16:03:36 2013 +0000
@@ -17,9 +17,11 @@
     void printValue(float *Value);
     void putc(char lettre);
     void Brightness(int Value);
+    void splash();
 private:
     Serial* device;
 };
-
+void clear(void);
+void move_cursor(int,int);
 
 #endif
\ No newline at end of file
diff -r 497632f57657 -r 65590e1ed8ed SertLCDv25.cpp
--- a/SertLCDv25.cpp	Wed Aug 10 13:32:08 2011 +0000
+++ b/SertLCDv25.cpp	Fri Apr 05 16:03:36 2013 +0000
@@ -47,6 +47,9 @@
 }
 
 
+void SerLCDv25::splash(){
+    device->printf("%c%c",0x7C,0x0a);
+}
 
 
 
@@ -55,4 +58,3 @@
 
 
 
-