
PRINT #1, “*CLS”
‘ Clear Model 2000
PRINT #1, “:INIT:CONT OFF;:ABORT”
‘ Init off
PRINT #1, “:SENS:FUNC ‘VOLT:DC’”
‘ DCV
PRINT #1, “:SYST:AZER:STAT OFF”
‘ Auto zero off
PRINT #1, “:SENS:VOLT:DC:AVER:STAT OFF”
‘ Filter off
PRINT #1, “:SENS:VOLT:DC:NPLC 0.01”
‘ NPLC = 0.01
PRINT #1, “:SENS:VOLT:DC:RANG 10”
‘ 10V range
PRINT #1, “:SENS:VOLT:DC:DIG 4”
‘ 4 digit
PRINT #1, “:FORM:ELEM READ”
‘ Reading only
PRINT #1, “:TRIG:COUN 1”
‘ Trig count 1
PRINT #1, “:SAMP:COUN 100”
‘ Sample count 100
PRINT #1, “:TRIG:DEL 0”
‘ No trigger delay
PRINT #1, “:TRIG:SOUR IMM”
‘ Immediate trigger
PRINT #1, “:DISP:ENAB OFF”
‘ No display
SLEEP 1
‘ Wait one second
PRINT #1, “:READ?”
‘ Read query
LINE INPUT #1, RD$
‘ Get data
PRINT RD$
‘ Display data
PRINT #1, “:DISP:ENAB ON”
‘ Turn on display
‘ Clean up and quit.
finish:
CLOSE #1
‘ Close file
CLEAR
‘ Interface clear
END
Example Programs
C-13
Summary of Contents for 2000
Page 1: ...Model 2000Multimeter User s Manual A G R E A T E R M E A S U R E O F C O N F I D E N C E...
Page 13: ...1 General Information...
Page 19: ...2 Basic Measurements...
Page 54: ...2 36 Basic Measurements...
Page 55: ...3 Measurement Options...
Page 87: ...4 Remote Operation...
Page 139: ...5 SCPI CommandReference...
Page 215: ...A Specifications...
Page 226: ...A 12 Specifications...
Page 227: ...B Statusand ErrorMessages...
Page 233: ...C Example Programs...
Page 246: ...C 14 Example Programs...
Page 247: ...D Models196 199and 8840A 8842ACommands...
Page 255: ...E IEEE 488 BusOverview...