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

#include "Layout.h"

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

        void display();

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

#endif