8.8 Sample Programs
173
8
C
ha
pte
r 8
R
S-2
32
C
/G
P-IB
/L
AN
In
te
rfa
ce
s
(3) External Trigger Measurement 1
Measure and import according to external triggering of the instrument (
TRIG
key or EXT I/O TRIG terminal
input), and save measurements in a text file.
Private Sub MeasureTrigSub()
Dim buffer As String
40
'Receiving butter
Dim recvstr As String
'Receiving char string
Dim pad As Integer
'Controller access
Dim gpibad As Integer
'Device Address
Dim timeout As Integer
'Timeout period
Dim ud As Integer
'State (unused)
im i As Integer
pad = 0
'Board Address 0
gpibad = 1
'BT3562-01, BT3563-01 Address 1
timeout = T100s
'Timeout 100s (because of external trigger wait
state)
Call ibfind("gpib0", 0)
'Initialize GP-IB
Call ibdev(pad, gpibad, 0, timeout, 1, 0, ud)
Call SendIFC(pad)
Open App.Path & "\data.csv" For Output As #1
'Open a text file for saving
Call Send(pad, gpibad, ":TRIG:SOUR EXT", NLend)
'Select external triggering
Call Send(pad, gpibad, ":INIT:CONT OFF", NLend)
'Continuous measurement OFF
For i = 1 To 10
Call Send(pad, gpibad, ":READ?", NLend)
'Send ":READ?" to measure and import the mea
-
surement
Call Receive(pad, gpibad, buffer, STOPend)
'Receive
recvstr = Left(buffer, InStr(1, buffer, Chr(10)) - 1)
Print #1, Str(i) & "," & recvstr
'Write to the file
Next
Close #1
Call ibonl(pad, 0)
End Sub
HIOKI BT3562A981-09
Содержание BT3562
Страница 2: ...HIOKI BT3562A981 09...
Страница 24: ...1 5 Measurement Flowchart 18 HIOKI BT3562A981 09...
Страница 84: ...4 13 Reset Function 78 HIOKI BT3562A981 09...
Страница 93: ...5 4 Internal Circuitry 87 5 Chapter 5 External Control EXT I O 5 4 Internal Circuitry HIOKI BT3562A981 09...
Страница 102: ...6 3 Printing 96 HIOKI BT3562A981 09...
Страница 186: ...8 8 Sample Programs 180 HIOKI BT3562A981 09...
Страница 198: ...10 3 Error Display 192 HIOKI BT3562A981 09...
Страница 200: ...194 HIOKI BT3562A981 09...
Страница 220: ...Appendix 11 Dimensional Diagram A20 HIOKI BT3562A981 09...
Страница 224: ...Index HIOKI BT3562A981 09...
Страница 225: ...HIOKI BT3562A981 09...
Страница 226: ...HIOKI BT3562A981 09...
Страница 227: ...HIOKI BT3562A981 09...
Страница 228: ...HIOKI BT3562A981 09...