5492GPIB B&K Precision, 5492GPIB Datasheet - Page 63

no-image

5492GPIB

Manufacturer Part Number
5492GPIB
Description
DMM BENCH 5 1/2DGT WITH GPIB CRD
Manufacturer
B&K Precision
Type
Digital (DMM)r
Datasheets

Specifications of 5492GPIB

Includes
Test Leads
Style
Bench
Display Digits
5.5
Display Type
VFD, Dual
Display Count
120000
Function
Voltage, Current, Resistance, Frequency
Functions, Extra
Continuity, dB, Diode Test
Features
Hold, Min/Max, RS-232 Port
Ranging
Auto/Manual
Response
True RMS
Accuracy
+/- 0.012 %
Lead Free Status / Rohs Status
Lead free / RoHS Compliant
6-6 Remote Program Examples using RS-232 interface
!
DECLARE FUNCTION TKDATA! ()
DECLARE SUB TKECHO ()
'DEMO.BAS
'
'
'
'Notice:
'
'
'
'
'
'
'
'
'
OPEN "COM1:9600,N,8,1,CD,CS,DS" FOR RANDOM AS #1
'Open COM1 for communication. 9600 baud, no parity, 8 data bits, 1 stop bit, ignore Data Carrier Detect
(DCD),
'Clear To Send (CTS), and Data Set Ready (DSR) signals
CMD$ = "RST"
PRINT #1, CMD$
TKECHO
TKECHO
CMD$ = "S101"
PRINT #1, CMD$
TKECHO
CMD$ = "S211"
PRINT #1, CMD$
TKECHO
SLEEP 3
CMD$ = "R1"
PRINT #1, CMD$
PRINT TKDATA; "V,";
TKECHO
CMD$ = "R2"
PRINT #1, CMD$
PRINT TKDATA; "V"
TKECHO
CLOSE #1
END
Example Using Quick BASIC
'Reset the meter.
'Send command to the meter.
'Release COM1.
'End of the program.
- This program set the meter to record Vdc measurement on the primary display
- and Vac measurement on the secondary display.
- The results will also be printed on the computer screen.
- Runs on MS-DOS QBasic 1.1,Microsoft Quick BASIC 4.5
- When use this program, the RS-232 of the meter should be set the following
- parameters.
- 1. BAUD 9600
- 2. DATA 8 BIT
- 3. PRITY NONE
- 4. STOP 1BIT
- 5. ECHO OFF
- 6. PRINT OFF
- This program uses COM1 to communicate with the meter.
- Version 1.2 (Modified By CC Tung. May31, 2002)
'Waiting "=>" and checking if the command is executed successfully.
'Waiting "*>" to make sure the meter is in power on initial state.
'Set primary display to Vdc function, auto-ranging mode.
'Send command to the meter.
'Waiting "=>" and checking if the command is executed successfully.
'Set secondary display to Vac function, auto-ranging mode.
'Send command to the meter.
'Waiting "=>" and checking if the command is executed successfully.
'Wait for 3 sec.
'Read primary display reading
'Send command to the meter.
'Print the value on computer screen.
'Waiting "=>" and checking if the command is executed successfully.
'Read secondary display reading
'Send command to the meter.
'Print the value on computer screen.
'Waiting "=>" and checking if the command is executed successfully.
63