Adjust the LCD_Menu to use the mBed Application board resources

Dependents:   class_project_main

Fork of SerialLCD_Menu by Mark Shuck

Revision:
11:af7687f1a985
Parent:
2:2654dc659298
--- a/Selection.h	Tue Sep 03 07:10:56 2013 +0000
+++ b/Selection.h	Thu Sep 12 05:33:18 2013 +0000
@@ -10,12 +10,13 @@
         
     public:
         void (*fun)();   // pointer to a function to execute 
+        uint8_t value;
         char* selText;   // selection text
         int pos;         // selection position
         Menu *childMenu; 
         
         Selection(void (*)(), int, Menu *, char *); 
-         
+        Selection(uint8_t, int, Menu *, char *); 
 };
 
 #endif 
\ No newline at end of file