Subversion Repositories f9daq

Compare Revisions

Ignore whitespace Rev 305 → Rev 311

/cvi/apps/TempCtrl/TempCtrl.h
19,24 → 19,27
#define PA_START 4 /* control type: command, callback function: StartCB */
#define PA_TSET 5 /* control type: numeric, callback function: (none) */
#define PA_HUMIDITY 6 /* control type: numeric, callback function: (none) */
#define PA_TMON 7 /* control type: numeric, callback function: (none) */
#define PA_DEBUG_1 8 /* control type: radioButton, callback function: (none) */
#define PA_LOG 9 /* control type: radioButton, callback function: (none) */
#define PA_GRAPH_VMON 10 /* control type: strip, callback function: (none) */
#define PA_GRAPH_3 11 /* control type: strip, callback function: (none) */
#define PA_GRAPH 12 /* control type: strip, callback function: (none) */
#define PA_FNAME 13 /* control type: string, callback function: (none) */
#define PA_ONOFF 14 /* control type: binary, callback function: SwitchOnOffCB */
#define PA_CHANNEL 15 /* control type: numeric, callback function: SelectChannelCB */
#define PA_IMAX 16 /* control type: numeric, callback function: (none) */
#define PA_VMAX 17 /* control type: numeric, callback function: (none) */
#define PA_VSET 18 /* control type: numeric, callback function: (none) */
#define PA_VMON 19 /* control type: numeric, callback function: (none) */
#define PA_ISET 20 /* control type: numeric, callback function: (none) */
#define PA_POLAR 21 /* control type: ring, callback function: (none) */
#define PA_IMON 22 /* control type: numeric, callback function: (none) */
#define PA_CVCC 23 /* control type: LED, callback function: (none) */
#define PA_PRESET 24 /* control type: numeric, callback function: SetPresetCB */
#define PA_HTMON 7 /* control type: numeric, callback function: (none) */
#define PA_TMON 8 /* control type: numeric, callback function: (none) */
#define PA_DEBUG_1 9 /* control type: radioButton, callback function: (none) */
#define PA_LOG 10 /* control type: radioButton, callback function: (none) */
#define PA_GRAPH_VMON 11 /* control type: strip, callback function: (none) */
#define PA_GRAPH_3 12 /* control type: strip, callback function: (none) */
#define PA_GRAPH 13 /* control type: strip, callback function: (none) */
#define PA_FNAME 14 /* control type: string, callback function: (none) */
#define PA_ONOFF 15 /* control type: binary, callback function: SwitchOnOffCB */
#define PA_CHANNEL 16 /* control type: numeric, callback function: SelectChannelCB */
#define PA_IMAX 17 /* control type: numeric, callback function: (none) */
#define PA_VMAX 18 /* control type: numeric, callback function: (none) */
#define PA_VSET 19 /* control type: numeric, callback function: (none) */
#define PA_VMON 20 /* control type: numeric, callback function: (none) */
#define PA_ISET 21 /* control type: numeric, callback function: (none) */
#define PA_POLAR 22 /* control type: ring, callback function: (none) */
#define PA_IMON 23 /* control type: numeric, callback function: (none) */
#define PA_CVCC 24 /* control type: LED, callback function: (none) */
#define PA_PRESET 25 /* control type: numeric, callback function: SetPresetCB */
#define PA_FAN 26 /* control type: binary, callback function: SwitchCoolingOnOffCB */
#define PA_ARDUINO 27 /* control type: string, callback function: (none) */
 
 
/* Control Arrays: */
56,6 → 59,7
int CVICALLBACK SetPresetCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
int CVICALLBACK StartCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
int CVICALLBACK StopCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
int CVICALLBACK SwitchCoolingOnOffCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);
int CVICALLBACK SwitchOnOffCB(int panel, int control, int event, void *callbackData, int eventData1, int eventData2);