From 37260f2ccff2793f54bfd291169d2c8d879bbc15 Mon Sep 17 00:00:00 2001 From: Mike Fiore Date: Mon, 30 Nov 2015 15:50:22 -0600 Subject: start work on survey sweep - currently determines rates and power levels to use and prints them out --- Layout/LayoutSweepComplete.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Layout/LayoutSweepComplete.h (limited to 'Layout/LayoutSweepComplete.h') 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 -- cgit v1.2.3