KS0108 LCD LIB with I2C I/O expander PCF8574 for Databus

Dependencies:   BusEnums

Dependents:   Menu

Revision:
4:eeaa5069be9c
Parent:
2:6a8fbb08d519
--- a/KS0108.cpp	Wed Sep 05 07:21:47 2012 +0000
+++ b/KS0108.cpp	Mon Sep 10 16:33:35 2012 +0000
@@ -16,8 +16,6 @@
     CS1(_CS1),
     DB(_DB)
 {
-
-
     RST.mode(OpenDrain);
     DI.mode(OpenDrain);
     RW.mode(OpenDrain);
@@ -905,19 +903,31 @@
     int x = Coord.x;
 
     Font = System5x7;
-    
+
     FontColor = BLACK;
-    
-   // LCD.SelectFont(System5x7,BLACK,ReadData);
-    
-    
-    
-    
+
+    // LCD.SelectFont(System5x7,BLACK,ReadData);
     GotoXY(x+10, Coord.y+7);
     PrintString(const_cast<char *> (line) );
     return 1;
 }
+void KS0108::showUpArrow (bool show)
+{
+
+}
+void KS0108::showDownArrow (bool show)
+{
+
+}
+uint8_t KS0108::getLines (void)
+{
+return 0;
+}
+
+uint8_t KS0108::getLineLength (void) 
+{
+return 0;
+}
 
 
 
-