blob: 5fec4c11a2837355d22c0067e0cd55fdc296bb3f (
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
|
#ifndef LCD_SETUP_H
#define LCD_SETUP_H
#define LCDMAXOUTPUTS 10
class cLcdSetup {
public:
int FullCycle;
int TimeCycle;
int VolumeKeep;
int Scrollwait;
int Scrollspeed;
int Charmap;
int AltShift;
int BackLight;
int OutputNumber;
int OutputFunction[LCDMAXOUTPUTS];
public:
cLcdSetup(void);
};
extern cLcdSetup LcdSetup;
#endif
|