Programming Example - Keithley 2651A Reference Manual

High power system sourcemeter instrument
Hide thumbs Also See for 2651A:
Table of Contents

Advertisement

Section 6: Instrument programming

Programming example

Script with a for loop
The following script puts a message on the front panel display slowly — one character at a time. The
intent of this example is to demonstrate:
The use of a for loop
Simple display remote commands
Simple Lua string manipulation
When creating a script using the TSB Embedded, you do not need the shell commands loadscript
and endscript, as shown in the examples below.
Example: User script
User script created in TSB Embedded
display.clear()
myMessage = "Hello World!"
for k = 1, string.len(myMessage) do
x = string.sub(myMessage, k, k)
display.settext(x)
print(x)
delay(1)
end
6-36
Model 2651A High Power System SourceMeter® Instrument Reference Manual
NOTE
User script created in user's own program
loadscript
display.clear()
myMessage = "Hello World!"
for k = 1, string.len(myMessage) do
end
endscript
x = string.sub(myMessage, k, k)
display.settext(x)
print(x)
delay(1)
2651A-901-01 Rev. A / March 2011

Advertisement

Table of Contents
loading

Table of Contents