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.
menbedMenu.h
00001 #ifndef _MENBEDMENU_H_ 00002 #define _MENBEDMENU_H_ 00003 00004 #include <vector> 00005 00006 #include "mbed.h" 00007 #include "menbedMenuItem.h" 00008 00009 class MenbedMenuItem; 00010 00011 class MenbedMenu { 00012 public: 00013 MenbedMenu *parentMenu; 00014 int8_t parentSelectedItemIndex; 00015 uint8_t parentTopOfScreenItemIndex; 00016 vector<MenbedMenuItem*> menuItems; 00017 00018 MenbedMenu (uint8_t nItems, MenbedMenuItem *items[]); 00019 }; 00020 00021 #endif /* _MENBEDMENU_H_ */
Generated on Thu Jul 14 2022 12:14:44 by
