Convenience routines for an I"C connected LCD display. Handy things like taking cursor to home, positioning cursor, clearing display, writing strings etc

Dependents:   gu_squirt_tester

Revision:
4:ce867009531a
Parent:
3:5744bf6006e1
Child:
5:37e171e2035c
diff -r 5744bf6006e1 -r ce867009531a jtlcd.h
--- a/jtlcd.h	Fri Nov 09 09:36:36 2012 +0000
+++ b/jtlcd.h	Sun Nov 11 09:43:33 2012 +0000
@@ -6,6 +6,9 @@
 #define LCD_LINE_SIZE 16
 //#define Comsend 0x00
 //#define Datasend 0x40
+//write followed by spaces up to LCD_LINE_SIZE */
+void LcdWriteTextLine(char *text);
+//write followed by spaces up to numb */
 void LcdWriteTextAndFill(char *text, int numb);
 void LcdWriteText(char *text);
 void LcdInit();