Dwayne Dilbeck / LCD_Menu

Dependents:   class_project_main

Fork of SerialLCD_Menu by Mark Shuck

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 "SerialLCD.h"
00004 
00005 Selection::Selection(void (*fun)(), int position, Menu *child, char* text) : 
00006     fun(fun), selText(text), pos(position), childMenu(child) {
00007     value=0x00;
00008 }
00009 
00010 Selection::Selection(uint8_t value, int position, Menu *child, char* text) : 
00011     value(value), selText(text), pos(position), childMenu(child) {
00012        fun=NULL;
00013 }
00014     
00015 
00016