Library for the serial LCD-09396 of Sparkfun

Dependents:   M5VelocityALLCODE

Fork of SerLCDv25 by Beeli Nick

Revision:
0:497632f57657
Child:
1:65590e1ed8ed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SerLCDv25.h	Wed Aug 10 13:32:08 2011 +0000
@@ -0,0 +1,25 @@
+#ifndef SerLCDv25_H
+#define SerLCDv25_H
+
+#include "mbed.h"
+
+class SerLCDv25 {
+
+public:
+    SerLCDv25(PinName rx, PinName tx);
+    void clear();
+    void cursorUnderline();
+    void cursorBlinkingBox();
+    void cursorClear();
+    void displayON();
+    void displayOFF();
+    void printf(char *string);  //printf(char *string)
+    void printValue(float *Value);
+    void putc(char lettre);
+    void Brightness(int Value);
+private:
+    Serial* device;
+};
+
+
+#endif
\ No newline at end of file