Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: class_project_main
Fork of SerialLCD_Menu by
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
Generated on Wed Jul 20 2022 14:51:28 by
1.7.2
