Library to display menus on TextLCDs. Interaction with functions Up,Down and Select (Buttons or RPG) Based on menu-library from pyeh9

Fork of Menu by Peihsun Yeh

Library to display menus on TextLCDs. Interaction with functions Up,Down and Select (Buttons or RPG) Based on menu-library from pyeh9

Files at this revision

API Documentation at this revision

Comitter:
charly
Date:
Mon Jan 12 19:37:51 2015 +0000
Parent:
6:819049708d51
Child:
8:fbaeab73fe1a
Commit message:
no refresh at Navigator->select()

Changed in this revision

Navigator.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/Navigator.cpp	Fri Jan 02 20:49:59 2015 +0000
+++ b/Navigator.cpp	Mon Jan 12 19:37:51 2015 +0000
@@ -57,8 +57,8 @@
         //execute function
         (activeMenu->selections[_cursorPos].fun)();
         // refresh the Menu
-        printMenu();
-        printCursor();
+        //printMenu();
+        //printCursor();
     }
     if(activeMenu->selections[_cursorPos].childMenu != NULL) {
         activeMenu = activeMenu->selections[_cursorPos].childMenu;