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.
menu.h
00001 // 00002 // menu file interface class (Version 0.0.1) 00003 // 00004 // 00005 00006 #include "mbed.h" 00007 00008 #ifndef _MENU_H_ 00009 #define _MENU_H_ 00010 00011 #define SEPARATOR = ';'; 00012 00013 // menu File class. 00014 class menu { 00015 public: 00016 00017 // Create a menu class. 00018 menu(); 00019 00020 // Destroy a menu class. 00021 ~menu(); 00022 00023 // nach einer Zeile suchen und diese ausgeben 00024 bool getValue(uint8_t pos, char *zeile1, char *zeile2, char *value); 00025 00026 private: 00027 00028 }; 00029 00030 #endif
Generated on Fri Jul 15 2022 19:45:09 by
1.7.2