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

Revision:
8:fbaeab73fe1a
Parent:
6:819049708d51
Child:
9:c9df0b33d176
diff -r 12f2b3b7975f -r fbaeab73fe1a Menu.h
--- a/Menu.h	Mon Jan 12 19:37:51 2015 +0000
+++ b/Menu.h	Fri Jan 16 22:23:34 2015 +0000
@@ -9,10 +9,12 @@
 
 class Menu {
     private:
-               
     public:
         vector<Selection> selections;
         char *menuID;
+
+        // currently selected Item in Menu (used to return to this point from submenu)
+        int  CurrentSelection;       
         
         Menu(char *);