summaryrefslogtreecommitdiff
path: root/Layout/LayoutSweepComplete.h
diff options
context:
space:
mode:
authorMike Fiore <mfiore@multitech.com>2015-11-30 15:50:22 -0600
committerMike Fiore <mfiore@multitech.com>2015-11-30 15:50:22 -0600
commit37260f2ccff2793f54bfd291169d2c8d879bbc15 (patch)
treeb908d697eb6f2d1ba2c305eacc3c7c7bb6203122 /Layout/LayoutSweepComplete.h
parent30b4f15aa70d24ec0a6b6bb1b3f5039c4921cb02 (diff)
downloadmtdot-box-evb-factory-firmware-37260f2ccff2793f54bfd291169d2c8d879bbc15.tar.gz
mtdot-box-evb-factory-firmware-37260f2ccff2793f54bfd291169d2c8d879bbc15.tar.bz2
mtdot-box-evb-factory-firmware-37260f2ccff2793f54bfd291169d2c8d879bbc15.zip
start work on survey sweep - currently determines rates and power levels to use and prints them out
Diffstat (limited to 'Layout/LayoutSweepComplete.h')
-rw-r--r--Layout/LayoutSweepComplete.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/Layout/LayoutSweepComplete.h b/Layout/LayoutSweepComplete.h
new file mode 100644
index 0000000..82cf008
--- /dev/null
+++ b/Layout/LayoutSweepComplete.h
@@ -0,0 +1,29 @@
+#ifndef __LAYOUTSWEEPCOMPLETE_H__
+#define __LAYOUTSWEEPCOMPLETE_H__
+
+#include "Layout.h"
+
+class LayoutSweepComplete : public Layout {
+ public:
+ LayoutSweepComplete(DOGS102* lcd);
+ ~LayoutSweepComplete();
+
+ void display();
+ void updateId(uint32_t id);
+ void updatePass(uint8_t pass);
+ void updateFail(uint8_t fail);
+
+ private:
+ Label _lId;
+ Label _lInfo;
+ Label _lPass;
+ Label _lFail;
+ Label _lSw1;
+ Label _lSw2;
+
+ Field _fId;
+ Field _fPass;
+ Field _fFail;
+};
+
+#endif