summaryrefslogtreecommitdiff
path: root/Layout/LayoutConfig.h
diff options
context:
space:
mode:
authorMike Fiore <mfiore@multitech.com>2015-11-17 13:37:39 -0600
committerMike Fiore <mfiore@multitech.com>2015-11-17 13:37:39 -0600
commit32194e901049ddd4f9d954720583363e05b762e2 (patch)
tree1167ed15709216db808784826d01c34311cb1bd9 /Layout/LayoutConfig.h
parenta2dd1624ef3fec296578289268973b7c00eb1ad1 (diff)
downloadmtdot-box-evb-factory-firmware-32194e901049ddd4f9d954720583363e05b762e2.tar.gz
mtdot-box-evb-factory-firmware-32194e901049ddd4f9d954720583363e05b762e2.tar.bz2
mtdot-box-evb-factory-firmware-32194e901049ddd4f9d954720583363e05b762e2.zip
add config layout, remove lots of logging
Diffstat (limited to 'Layout/LayoutConfig.h')
-rw-r--r--Layout/LayoutConfig.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/Layout/LayoutConfig.h b/Layout/LayoutConfig.h
new file mode 100644
index 0000000..0fdba1c
--- /dev/null
+++ b/Layout/LayoutConfig.h
@@ -0,0 +1,20 @@
+#ifndef __LAYOUTCONFIG_H__
+#define __LAYOUTCONFIG_H__
+
+#include "Layout.h"
+
+class LayoutConfig : public Layout {
+ public:
+ LayoutConfig(DOGS102* lcd);
+ ~LayoutConfig();
+
+ void display();
+
+ private:
+ Label _lMode;
+ Label _lHelp1;
+ Label _lHelp2;
+ Label _lHelp3;
+};
+
+#endif