summaryrefslogtreecommitdiff
path: root/Layout/LayoutStartup.h
blob: f9cdbbdb86d5931994e12eab0f2c689aa14e8043 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef __LAYOUTSTARTUP_H__
#define __LAYOUTSTARTUP_H__

#include "Layout.h"
#include "mDot.h"

class LayoutStartup : public Layout {
    public:
        LayoutStartup(DOGS102* lcd, mDot* dot);
        ~LayoutStartup();

        void display();
        void updateGPS(bool gps);

    private:
        mDot* _dot;

        Label _lName;
        Label _lInfo;
        Label _lVersion;

        Field _fName;
        Field _fVersion;
        Field _fGps;
        Field _fId;

        Image _iLogo;
};

#endif