summaryrefslogtreecommitdiff
path: root/Layout/LayoutConfig.h
diff options
context:
space:
mode:
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