Adjust the LCD_Menu to use the mBed Application board resources

Dependents:   class_project_main

Fork of SerialLCD_Menu by Mark Shuck

Revision:
9:59ec5b7b059d
Parent:
8:a6dc9b1525c7
Child:
13:98d452550cbe
diff -r a6dc9b1525c7 -r 59ec5b7b059d Navigator.cpp
--- a/Navigator.cpp	Tue Sep 03 10:04:39 2013 +0000
+++ b/Navigator.cpp	Tue Sep 03 10:21:47 2013 +0000
@@ -98,12 +98,9 @@
     if(cursorLine == 2){
         cursorLine = 1;
     }
-    
     if(cursorPos != 0){
         cursorPos--;
     }
-    printMenu();
-    printCursor();
 }
 
 void Navigator::moveDown()
@@ -114,6 +111,4 @@
     if(cursorPos != (bottom-1)){
         cursorPos++;
     }
-    printMenu();
-    printCursor();
 }
\ No newline at end of file