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

#include "Layout.h"

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

        void display();

    private:
        Label _lMode;
        Label _lIns1;
        Label _lIns2;
        Label _lSw1;
        Label _lSw2;
};

#endif