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.
Fork of Menu by
Menu.cpp
00001 #include "mbed.h" 00002 #include "Menu.h" 00003 #include "MenuItem.h" 00004 00005 Menu::Menu(char *id) : menuID(id) 00006 { 00007 selections.clear(); 00008 CurrentSelection = 0; 00009 } 00010 00011 void Menu::add(const MenuItem &toAdd) 00012 { 00013 selections.push_back(toAdd); 00014 } 00015 00016 void Menu::changeText(int position, char *newText) 00017 { 00018 if ((position >=0) && (position <= selections.size())) { 00019 selections[position].selText = newText; 00020 } 00021 } 00022
Generated on Fri Jul 15 2022 06:41:56 by
1.7.2
