前回質問させていただいだがうまく作動しなかったのでまた質問させていただきます。
前回pythonでフンクションジェネレータのサイン波を2秒ごとに変化させるプログラムを組んだが正常に作動しませんでした。
VOLTageの部分のxの部分を1秒ごとに1s→1v、2s→2v、3s→3v、、、のようにするにはどうしたらいいでしょうか?
python
1コード
import sys
import visa
import time
rm = visa.ResourceManager()
usb = (x'xxx::xxxxx::0xxxxx::Uxxxxxx::INSTR',)
if len(usb) != 1:
print 'Bad instrument list',instruments
sys.exit(-1)
scope = rm.open_resource(usb[0])
scope.write("*RST")
scope.write("OUTPut:LOAD 50")
scope.write("FUNCtion:SHAPe sinusoid")
scope.write("FREQuency 300")
x = 1
while x < 5:
scope.write("VOLTage x")
x = x + 1