summaryrefslogtreecommitdiff
path: root/Layout/LayoutStartup.h
diff options
context:
space:
mode:
Diffstat (limited to 'Layout/LayoutStartup.h')
-rw-r--r--Layout/LayoutStartup.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/Layout/LayoutStartup.h b/Layout/LayoutStartup.h
index de8935e..c67ab1e 100644
--- a/Layout/LayoutStartup.h
+++ b/Layout/LayoutStartup.h
@@ -2,20 +2,24 @@
#define __LAYOUTSTARTUP_H__
#include "Layout.h"
+#include "mDot.h"
class LayoutStartup : public Layout {
public:
- LayoutStartup(DOGS102* lcd);
+ LayoutStartup(DOGS102* lcd, mDot* dot);
~LayoutStartup();
void display();
private:
+ mDot* _dot;
+
Label _lName;
Label _lInfo;
Label _lVersion;
Field _fVersion;
+ Field _fId;
Image _iLogo;
};