Serial LCD Menu system with buttons instead of RPG. Based on Peihsun Yeh's work

Fork of Menu by Peihsun Yeh

Selection.cpp

Committer:
pyeh9
Date:
2013-03-05
Revision:
1:84d263c8932d
Parent:
0:577f0ec71f4c
Child:
3:920157b558db

File content as of revision 1:84d263c8932d:

#include "mbed.h"
#include "Selection.h"
#include "TextLCD.h"

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