summaryrefslogtreecommitdiff
path: root/Layout/LayoutSurveyProgress.h
blob: 85a029b8b47c43ca25c7d3ddda942ef2ed1811ba (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
#ifndef __LAYOUTSURVEYPROGRESS_H__
#define __LAYOUTSURVEYPROGRESS_H__

#include "Layout.h"

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

        void display();

        void updateCountdown(uint32_t seconds);

    private:
        Label _lMsg1;
        Label _lMsg2;
        Label _lMsg3;

        Field _fCountdownLabel;
        Field _fCountdown;
};

#endif