summaryrefslogtreecommitdiff
path: root/Layout/LayoutSweepComplete.h
blob: 221201d601ef5283f057284ad5291384d3a39d86 (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 __LAYOUTSWEEPCOMPLETE_H__
#define __LAYOUTSWEEPCOMPLETE_H__

#include "Layout.h"

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

        void display();
        void updateId(uint32_t id);
        void updatePass(uint8_t pass);
        void updateFail(uint8_t fail);

    private:
        Label _lId;
        Label _lInfo;
        Label _lPass;
        Label _lFail;
        Label _lSw2;
        
        Field _fId;
        Field _fPass;
        Field _fFail;
};

#endif