Rev 305 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 305 | Rev 311 | ||
---|---|---|---|
Line 17... | Line 17... | ||
17 | #define PA_EXIT 2 /* control type: command, callback function: ExitCB */ |
17 | #define PA_EXIT 2 /* control type: command, callback function: ExitCB */ |
18 | #define PA_STOP 3 /* control type: command, callback function: StopCB */ |
18 | #define PA_STOP 3 /* control type: command, callback function: StopCB */ |
19 | #define PA_START 4 /* control type: command, callback function: StartCB */ |
19 | #define PA_START 4 /* control type: command, callback function: StartCB */ |
20 | #define PA_TSET 5 /* control type: numeric, callback function: (none) */ |
20 | #define PA_TSET 5 /* control type: numeric, callback function: (none) */ |
21 | #define PA_HUMIDITY 6 /* control type: numeric, callback function: (none) */ |
21 | #define PA_HUMIDITY 6 /* control type: numeric, callback function: (none) */ |
- | 22 | #define PA_HTMON 7 /* control type: numeric, callback function: (none) */ |
|
22 | #define PA_TMON |
23 | #define PA_TMON 8 /* control type: numeric, callback function: (none) */ |
23 | #define PA_DEBUG_1 |
24 | #define PA_DEBUG_1 9 /* control type: radioButton, callback function: (none) */ |
24 | #define PA_LOG |
25 | #define PA_LOG 10 /* control type: radioButton, callback function: (none) */ |
25 | #define PA_GRAPH_VMON |
26 | #define PA_GRAPH_VMON 11 /* control type: strip, callback function: (none) */ |
26 | #define PA_GRAPH_3 |
27 | #define PA_GRAPH_3 12 /* control type: strip, callback function: (none) */ |
27 | #define PA_GRAPH |
28 | #define PA_GRAPH 13 /* control type: strip, callback function: (none) */ |
28 | #define PA_FNAME |
29 | #define PA_FNAME 14 /* control type: string, callback function: (none) */ |
29 | #define PA_ONOFF |
30 | #define PA_ONOFF 15 /* control type: binary, callback function: SwitchOnOffCB */ |
30 | #define PA_CHANNEL |
31 | #define PA_CHANNEL 16 /* control type: numeric, callback function: SelectChannelCB */ |
31 | #define PA_IMAX |
32 | #define PA_IMAX 17 /* control type: numeric, callback function: (none) */ |
32 | #define PA_VMAX |
33 | #define PA_VMAX 18 /* control type: numeric, callback function: (none) */ |
33 | #define PA_VSET |
34 | #define PA_VSET 19 /* control type: numeric, callback function: (none) */ |
34 | #define PA_VMON |
35 | #define PA_VMON 20 /* control type: numeric, callback function: (none) */ |
35 | #define PA_ISET |
36 | #define PA_ISET 21 /* control type: numeric, callback function: (none) */ |
36 | #define PA_POLAR |
37 | #define PA_POLAR 22 /* control type: ring, callback function: (none) */ |
37 | #define PA_IMON |
38 | #define PA_IMON 23 /* control type: numeric, callback function: (none) */ |
38 | #define PA_CVCC |
39 | #define PA_CVCC 24 /* control type: LED, callback function: (none) */ |
39 | #define PA_PRESET |
40 | #define PA_PRESET 25 /* control type: numeric, callback function: SetPresetCB */ |
- | 41 | #define PA_FAN 26 /* control type: binary, callback function: SwitchCoolingOnOffCB */ |
|
- | 42 | #define PA_ARDUINO 27 /* control type: string, callback function: (none) */ |
|
40 | 43 | ||
41 | 44 | ||
42 | /* Control Arrays: */ |
45 | /* Control Arrays: */ |
43 | 46 | ||
44 | /* (no control arrays in the resource file) */ |
47 | /* (no control arrays in the resource file) */ |
Line 54... | Line 57... | ||
54 | int CVICALLBACK ExitCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
57 | int CVICALLBACK ExitCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
55 | int CVICALLBACK SelectChannelCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
58 | int CVICALLBACK SelectChannelCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
56 | int CVICALLBACK SetPresetCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
59 | int CVICALLBACK SetPresetCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
57 | int CVICALLBACK StartCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
60 | int CVICALLBACK StartCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
58 | int CVICALLBACK StopCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
61 | int CVICALLBACK StopCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
- | 62 | int CVICALLBACK SwitchCoolingOnOffCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
|
59 | int CVICALLBACK SwitchOnOffCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
63 | int CVICALLBACK SwitchOnOffCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2); |
60 | 64 | ||
61 | 65 | ||
62 | #ifdef __cplusplus |
66 | #ifdef __cplusplus |
63 | } |
67 | } |