blob: fd4ff02dc6cb0b14b59d8574c017173285dccd9c (
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
29
30
|
#ifndef __LAYOUTHELP_H__
#define __LAYOUTHELP_H__
#include "Layout.h"
class LayoutHelp : public Layout {
public:
LayoutHelp(DOGS102* lcd);
~LayoutHelp();
void display();
void updateMode(std::string mode);
void updateDescription(std::string description);
void updateMsg(std::string msg);
void updateSw1(std::string s);
void updateSw2(std::string s);
private:
Label _lIns1;
Label _lIns2;
Field _fMode;
Field _fDesc;
Field _fMsg;
Field _fSw1;
Field _fSw2;
};
#endif
|