Custom menu

Fork of Menu by Peihsun Yeh

Committer:
LeoHsueh
Date:
Thu Feb 26 11:57:11 2015 +0000
Revision:
3:3fceb6ff921e
Parent:
1:84d263c8932d
Child:
4:396eff5be1a1
Add title, action method.; Del input.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
pyeh9 0:577f0ec71f4c 1 #include "mbed.h"
pyeh9 0:577f0ec71f4c 2 #include "Selection.h"
pyeh9 0:577f0ec71f4c 3 #include "TextLCD.h"
pyeh9 0:577f0ec71f4c 4
LeoHsueh 3:3fceb6ff921e 5 Selection::Selection(void (*fun)(), int position, Menu *child, const char* text) :
pyeh9 1:84d263c8932d 6 fun(fun), selText(text), pos(position), childMenu(child) {}