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

#include "Layout.h"

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

        void display();

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

#endif