Section 6: Instrument programming
Model 2651A High Power System SourceMeter® Instrument Reference Manual
6-36
2651A-901-01 Rev. A / March 2011
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
NOTE
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
User script created in user's own program
loadscript
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
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
endscript