summaryrefslogtreecommitdiff
path: root/Layout/LayoutConfig.h
blob: 5a58433d901debfe1904736ee0f8ab75f3ac9db8 (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
#ifndef __LAYOUTCONFIG_H__
#define __LAYOUTCONFIG_H__

#include "Layout.h"

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

        void display();
        void roll();

    private:
        Label _lMode;
        Field _fHeader;
        Field _fMsg1;
        Field _fMsg2;
        Field _fMsg3;
		Timer _timer;		
		uint8_t _screen;
		uint32_t _duration;
	    void update1of3();
	    void update2of3();
		void update3of3();
};

#endif