menu v1

Fork of Menu by Peihsun Yeh

Committer:
jjcimon
Date:
Wed May 13 11:40:22 2015 +0000
Revision:
3:3cdd377f5899
Parent:
1:84d263c8932d
Beta private,

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"
jjcimon 3:3cdd377f5899 3 //#include "TextLCD.h"
jjcimon 3:3cdd377f5899 4 #include "SMARTGPU.h"
pyeh9 0:577f0ec71f4c 5
pyeh9 1:84d263c8932d 6 Selection::Selection(void (*fun)(), int position, Menu *child, char* text) :
pyeh9 1:84d263c8932d 7 fun(fun), selText(text), pos(position), childMenu(child) {}