summaryrefslogtreecommitdiff
path: root/Layout/LayoutConfig.h
diff options
context:
space:
mode:
authorLeon Lindenfelser <llindenfelser@multitech.com>2016-01-06 15:01:29 -0600
committerLeon Lindenfelser <llindenfelser@multitech.com>2016-01-06 15:01:29 -0600
commitd75af02d4a1d824df7fee58baaffc0c4759fb78a (patch)
treea84f22d1781e0eeb8faad097992fb35ff4d75471 /Layout/LayoutConfig.h
parentcbda95f01fd109c5b9d9f35624f57bd4cca069d8 (diff)
downloadmtdot-box-evb-factory-firmware-d75af02d4a1d824df7fee58baaffc0c4759fb78a.tar.gz
mtdot-box-evb-factory-firmware-d75af02d4a1d824df7fee58baaffc0c4759fb78a.tar.bz2
mtdot-box-evb-factory-firmware-d75af02d4a1d824df7fee58baaffc0c4759fb78a.zip
Change the verbiage of the configuration help screen. Scrolls 3 steps now.
Diffstat (limited to 'Layout/LayoutConfig.h')
-rw-r--r--Layout/LayoutConfig.h14
1 files changed, 11 insertions, 3 deletions
diff --git a/Layout/LayoutConfig.h b/Layout/LayoutConfig.h
index 0fdba1c..5a58433 100644
--- a/Layout/LayoutConfig.h
+++ b/Layout/LayoutConfig.h
@@ -9,12 +9,20 @@ class LayoutConfig : public Layout {
~LayoutConfig();
void display();
+ void roll();
private:
Label _lMode;
- Label _lHelp1;
- Label _lHelp2;
- Label _lHelp3;
+ Field _fHeader;
+ Field _fMsg1;
+ Field _fMsg2;
+ Field _fMsg3;
+ Timer _timer;
+ uint8_t _screen;
+ uint32_t _duration;
+ void update1of3();
+ void update2of3();
+ void update3of3();
};
#endif