Custom menu

Fork of Menu by Peihsun Yeh

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Selection.cpp Source File

Selection.cpp

00001 #include "mbed.h"
00002 #include "Selection.h"
00003 #include "TextLCD.h"
00004 
00005 Selection::Selection(FunctionPointer *fun, int position, Menu *child, const char* text) :
00006     fun(fun), selText(text), pos(position), childMenu(child) {}