summaryrefslogtreecommitdiff
path: root/Layout/LayoutSurveyProgress.h
diff options
context:
space:
mode:
Diffstat (limited to 'Layout/LayoutSurveyProgress.h')
-rw-r--r--Layout/LayoutSurveyProgress.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/Layout/LayoutSurveyProgress.h b/Layout/LayoutSurveyProgress.h
new file mode 100644
index 0000000..85a029b
--- /dev/null
+++ b/Layout/LayoutSurveyProgress.h
@@ -0,0 +1,24 @@
+#ifndef __LAYOUTSURVEYPROGRESS_H__
+#define __LAYOUTSURVEYPROGRESS_H__
+
+#include "Layout.h"
+
+class LayoutSurveyProgress : public Layout {
+ public:
+ LayoutSurveyProgress(DOGS102* lcd);
+ ~LayoutSurveyProgress();
+
+ void display();
+
+ void updateCountdown(uint32_t seconds);
+
+ private:
+ Label _lMsg1;
+ Label _lMsg2;
+ Label _lMsg3;
+
+ Field _fCountdownLabel;
+ Field _fCountdown;
+};
+
+#endif