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

Committer:
charly
Date:
Wed Jan 13 19:59:21 2016 +0000
Revision:
11:6814cbc83ae0
Parent:
10:2b6ddf53b05e
added show_longtext() to display a long text. With scrollbars.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
charly 9:c9df0b33d176 1 #include "mbed.h"
charly 9:c9df0b33d176 2 #include "MenuItem.h"
charly 9:c9df0b33d176 3 #include "TextLCD.h"
charly 9:c9df0b33d176 4
charly 10:2b6ddf53b05e 5 MenuItem::MenuItem(void (*userAction)(), int position, Menu *child, char* text, uint8_t itemMode, menu_data * menu_parameter) :
charly 10:2b6ddf53b05e 6 userAction(userAction), selText(text), pos(position), childMenu(child), itemMode(itemMode), menu_parameter(menu_parameter) {}
charly 10:2b6ddf53b05e 7