-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.h
More file actions
31 lines (24 loc) · 755 Bytes
/
constants.h
File metadata and controls
31 lines (24 loc) · 755 Bytes
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
31
#ifndef CONSTANTS_H
#define CONSTANTS_H
#define KRAKEN_X61_VENDOR 0x2433
#define KRAKEN_X61_PRODUCT 0xb200
#define KRAKEN_FAN_CODE 0x12
#define KRAKEN_PUMP_CODE 0x13
#define KRAKEN_COLOR_CODE 0x10
#define KRAKEN_INIT 0x0002
#define KRAKEN_BEGIN 0x0001
const char *const kDefaultCPUTempFile = "/sys/class/hwmon/hwmon0/temp1_input";
const char *const kDefaultConfigFile = "/etc/leviathan/levd.cfg";
const char *const kDefaultConkyFile = "/etc/leviathan/levd.cfg";
const unsigned char kDefaultColor[19] = {
KRAKEN_COLOR_CODE, 0xff, 0xff, 0xff,
0x00, 0x00, 0x00, 0xff, 0x00, 0x00,
0x3c, 0x01, 0x01, 0x01, 0x00, 0x00,
0x01, 0x00, 0x01
};
// 11 - interval
// 12 - interval
// 13 - enabled
// 14 - altBit
// 15 - blinking
#endif // CONSTANTS_H