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

MenuItem.cpp

Committer:
charly
Date:
2015-03-13
Revision:
9:c9df0b33d176
Child:
10:2b6ddf53b05e

File content as of revision 9:c9df0b33d176:

#include "mbed.h"
#include "MenuItem.h"
#include "TextLCD.h"

MenuItem::MenuItem(void (*userAction)(), int position, Menu *child, char* text) : 
    userAction(userAction), selText(text), pos(position), childMenu(child) {}