Series 2600 System SourceMeters User’s Manual
Remote Operation 2-11
Return to
2600S-900-01 Rev. A / May 2006
Step 4: Turn on output
Send the following command to turn on the output:
smua.source.output =smua.OUTPUT_ON
Step 5: Make a measurement
Enter the following command to take a current measurement:
reading = smua.measure.i()
Step 6: Print the result
Print the result in the console window with the following command:
print(reading)
Note that the reading response will appear in the console window (refer to
).
Alternatively, you can take and print readings by including the appropriate
mea-
sure
command as the argument in the
command. For example, the fol-
lowing commands will take and print ohms and power readings respectively:
print(smua.measure.r())
print(smua.measure.p())
Again, readings will be displayed in the console window.
Step 7: Turn off output
Send the following command to turn off the output when measurements are
complete:
smua.source.output =smua.OUTPUT_OFF