-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommands.h
48 lines (44 loc) · 1.04 KB
/
Commands.h
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#ifndef Commands_h
#define Commands_h
#define GET_MOISTURE 1
#define SET_MOISTURE 2
#define GET_DESIRED_MOISTURE 3
#define SET_DESIRED_MOISTURE 4
#define GET_START_TIME 5
#define SET_START_TIME 6
#define GET_TIME_ON 7
#define SET_TIME_ON 8
#define GET_COOL_DOWN 9
#define SET_COOL_DOWN 10
#define GET_PUMP_ON 11
#define SET_PUMP_ON 12
#define GET_TIME 13
#define SET_TIME 14
#define GET_AIR_TEMP 15
#define SET_AIR_TEMP 16
#define GET_HUMIDITY 17
#define SET_HUMIDITY 18
#define GET_FOGGER_ON 19
#define SET_FOGGER_ON 20
#define GET_LIGHT_ON 21
#define SET_LIGHT_ON 22
#define GET_FAN_ON 23
#define SET_FAN_ON 24
#define LOW_WATER_ALARM 25
#define GET_DISTANCE 26
#define SET_DISTANCE 27
#define SET_DISTANCE_ALARM 28
#define SET_HEIGHT 29
#define SET_AVERAGE_HEIGHT 30
#define GET_AVERAGE_HEIGHT 31
#define GET_GROW_MODE 32
#define SET_GROW_MODE 33
#define START_FLOWERING 34
#define LOG_EVENT 34
#define TURN_FAN_ON 35
#define TURN_LIGHT_ON 36
#define TURN_PUMP_ON 37
#define TURN_FOGGER_ON 38
#define HUMIDITY_EMERGENCY 39
#define TEMP_EMERGENCY 40
#endif