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

Fork of Menu by Peihsun Yeh

Committer:
mshuck
Date:
Sun Aug 04 18:02:39 2013 +0000
Revision:
5:70fec61bebaf
Parent:
3:920157b558db
Serial LCD based; removed RPG and hard defined buttons

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