summaryrefslogtreecommitdiff
path: root/Layout/LayoutSingleHelp.h
diff options
context:
space:
mode:
authorMike Fiore <mfiore@multitech.com>2015-11-18 11:00:45 -0600
committerMike Fiore <mfiore@multitech.com>2015-11-18 11:00:45 -0600
commita17ec37a0c96a7d204c52ab4f24b11852cdb7f66 (patch)
tree9d061a0268df61d41161e1ac383a21e13b1160ce /Layout/LayoutSingleHelp.h
parent0a83aa7c81cb394283b5a327408831f7d62bc336 (diff)
downloadmtdot-box-evb-factory-firmware-a17ec37a0c96a7d204c52ab4f24b11852cdb7f66.tar.gz
mtdot-box-evb-factory-firmware-a17ec37a0c96a7d204c52ab4f24b11852cdb7f66.tar.bz2
mtdot-box-evb-factory-firmware-a17ec37a0c96a7d204c52ab4f24b11852cdb7f66.zip
add placeholder functions for demo, survey single, and survey sweep modes and layouts for each - menu navigation is looking really good
Diffstat (limited to 'Layout/LayoutSingleHelp.h')
-rw-r--r--Layout/LayoutSingleHelp.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/Layout/LayoutSingleHelp.h b/Layout/LayoutSingleHelp.h
new file mode 100644
index 0000000..421bc1c
--- /dev/null
+++ b/Layout/LayoutSingleHelp.h
@@ -0,0 +1,21 @@
+#ifndef __LAYOUTSINGLEHELP_H__
+#define __LAYOUTSINGLEHELP_H__
+
+#include "Layout.h"
+
+class LayoutSingleHelp : public Layout {
+ public:
+ LayoutSingleHelp(DOGS102* lcd);
+ ~LayoutSingleHelp();
+
+ void display();
+
+ private:
+ Label _lMode;
+ Label _lIns1;
+ Label _lIns2;
+ Label _lSw1;
+ Label _lSw2;
+};
+
+#endif