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

#include "Layout.h"

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

        void display();

    private:
        Label _lName;
        Label _lInfo;
        Label _lVersion;

        Field _fVersion;

        Image _iLogo;
};

#endif