Operator`s manual

Table Of Contents
143 Signametrics
DMMSetTCType
SMU2060 SMU2064
Description Set Thermocouple type.
#include "SMU2060.h"
#include "USBDMMUser.h"
int DMMSetTCType(int nDmm, int iType)
Remarks This function selects the thermocouple type to be measured and linearized. It must be one
of the following: B, E, J, K, N, R, S or T. See the definitions for these parameters in the
USBDMMUser.h file. The default type is ‘K’.
Parameter
Type/Description
NDmm
int Identifies the DMM. DMMs are numbered starting with zero.
iTempUnits
int The thermocouple type to be selected. This value can be set from
BTyppe to TType as defined in the USBDMMUser.h file
.
Return Value The return value is one of the following constants.
Value
Meaning
DMM_OKAY
Function succeeded.
Negative Value
Error code
Example int status = DMMSetTCType(0, NType) // select N type TC
DMMSetTempUnits
SMU2060 SMU2064
Description Set temperature units to C or F.
#include "SMU2060.h"
#include "USBDMMUser.h"
int DMMSetTempUnits(int nDmm, int iTempUnits)
Remarks This function sets the temperature units to either C or F. This is applicable to both the
on-board temperature sensor and the RTD measurements.
Parameter
Type/Description
nDmm
int Identifies the DMM. DMMs are numbered starting with zero.
iTempUnits
int Temperature units can be either DEG_F for
F, or DEG_C for C.
The default is
C.