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.
Diff: FactoryResetMenu.h
- Revision:
- 4:7226c43320b5
- Child:
- 5:9f4d4f8ffc00
diff -r 8395f7ab6d3e -r 7226c43320b5 FactoryResetMenu.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/FactoryResetMenu.h Thu Sep 12 11:27:50 2019 +0000
@@ -0,0 +1,26 @@
+#ifndef FACTORYRESET_MENU_H
+#define FACTORYRESET_MENU_H
+
+#include "mbed.h"
+#include "Menu.h"
+#include "LCD.h"
+#include "AddressMap.h"
+
+class FactoryResetMenu : public Menu
+{
+ public :
+ int active_selection;
+ FactoryResetMenu(char* id);
+
+ void display(LCD * lcd);
+
+ virtual void pressMode();
+ virtual void pressSet();
+ virtual void init();
+
+ virtual char* getText() { return "Factory Reset"; }
+
+};
+
+
+#endif
\ No newline at end of file